20 StyleFile(
const std::string&
id,
const std::string& name,
const std::string& police,
const int& policeSize,
const std::string& color,
const bool& gras,
const bool& italique,
const bool& souligne,
const bool& shadow);
26 std::string
getId()
const;
std::string getId() const
getId : récupérer le l'identificateur (id) du style
Definition stylefile.cpp:35
bool isSouligne() const
isSouligne : vérifie si le style est souligné ou pas
Definition stylefile.cpp:93
bool isItalique() const
isItalique : vérifie si le style est en italique ou pas
Definition stylefile.cpp:85
bool isShadow() const
isShadow : vérifie si le style lui est appliqué une ombre ou pas
Definition stylefile.cpp:101
int getPoliceSize() const
getPoliceSize : récupère la taille du style
Definition stylefile.cpp:51
QString toQString() const
toQString
Definition stylefile.cpp:112
bool isGras() const
isGras : vérifie si le style contient du gras
Definition stylefile.cpp:77
StyleFile(const std::string &id, const std::string &name, const std::string &police, const int &policeSize, const std::string &color, const bool &gras, const bool &italique, const bool &souligne, const bool &shadow)
Constructeur complet de la classe StyleFile.
Definition stylefile.cpp:18
StyleFile()
Constructeur par défaut de la classe StyleFile.
Definition stylefile.cpp:28
std::string getColor() const
getColor : récupère la couleur du style
Definition stylefile.cpp:59
std::string getPolice() const
getPolice : récupère la police d'un style
Definition stylefile.cpp:43
std::string getName() const
Récupère le nom du style.
Definition stylefile.cpp:68