Init locallabgtk3

This commit is contained in:
Desmis
2017-01-21 15:34:40 +01:00
parent 928c4c7d02
commit 273e1cb3b2
47 changed files with 18583 additions and 3345 deletions

View File

@@ -35,8 +35,8 @@ class Preferences : public Gtk::Dialog, public ProfileStoreListener
Gtk::TreeModelColumn<Glib::ustring> ext;
ExtensionColumns()
{
add(enabled);
add(ext);
add (enabled);
add (ext);
}
};
ExtensionColumns extensionColumns;
@@ -53,11 +53,11 @@ class Preferences : public Gtk::Dialog, public ProfileStoreListener
Gtk::TreeModelColumn<int> addsetid;
BehavColumns()
{
add(label);
add(badd);
add(bset);
add(visible);
add(addsetid);
add (label);
add (badd);
add (bset);
add (visible);
add (addsetid);
}
};
@@ -67,7 +67,7 @@ class Preferences : public Gtk::Dialog, public ProfileStoreListener
Glib::ustring shortFName;
Glib::ustring longFName;
ThemeFilename (Glib::ustring sfname, Glib::ustring lfname) : shortFName(sfname), longFName(lfname) {}
ThemeFilename (Glib::ustring sfname, Glib::ustring lfname) : shortFName (sfname), longFName (lfname) {}
};
Glib::RefPtr<Gtk::TreeStore> behModel;
@@ -139,6 +139,7 @@ class Preferences : public Gtk::Dialog, public ProfileStoreListener
Gtk::ComboBoxText* cprevdemo;
Gtk::CheckButton* ctiffserialize;
Gtk::ComboBoxText* curveBBoxPosC;
Gtk::ComboBoxText* cmip;
Gtk::ComboBoxText* theme;
Gtk::FontButton* fontButton;
@@ -226,9 +227,9 @@ class Preferences : public Gtk::Dialog, public ProfileStoreListener
void iccDirChanged ();
void switchThemeTo (Glib::ustring newTheme);
void switchFontTo (const Glib::ustring &newFontFamily, const int newFontSize);
bool splashClosed(GdkEventAny* event);
bool splashClosed (GdkEventAny* event);
int getThemeRowNumber(Glib::ustring& longThemeFName);
int getThemeRowNumber (Glib::ustring& longThemeFName);
void appendBehavList (Gtk::TreeModel::iterator& parent, Glib::ustring label, int id, bool set);