GUI touchups: icons issue 754
@@ -27,7 +27,7 @@ set(PROC_TARGET_7_LABEL athlon-4 CACHE STRING "Processor-7 label - use it to pro
|
|||||||
set(PROC_TARGET_7_FLAGS "-march=athlon-4" CACHE STRING "Processor-7 flags")
|
set(PROC_TARGET_7_FLAGS "-march=athlon-4" CACHE STRING "Processor-7 flags")
|
||||||
|
|
||||||
set(PROC_TARGET_8_LABEL athlon64 CACHE STRING "Processor-8 label - use it to provide a athlon64 optimized build, if you have this processor")
|
set(PROC_TARGET_8_LABEL athlon64 CACHE STRING "Processor-8 label - use it to provide a athlon64 optimized build, if you have this processor")
|
||||||
set(PROC_TARGET_8_FLAGS "-march=pentium2 -mtune=athlon64" CACHE STRING "Processor-8 flags")
|
set(PROC_TARGET_8_FLAGS "-march=athlon64 -mtune=athlon64" CACHE STRING "Processor-8 flags")
|
||||||
|
|
||||||
set(PROC_TARGET_9_LABEL phenomX4 CACHE STRING "Processor-9 label - use it to provide a phenomX4 optimized build, if you have this processor")
|
set(PROC_TARGET_9_LABEL phenomX4 CACHE STRING "Processor-9 label - use it to provide a phenomX4 optimized build, if you have this processor")
|
||||||
set(PROC_TARGET_9_FLAGS "-march=amdfam10" CACHE STRING "Processor-9 flags")
|
set(PROC_TARGET_9_FLAGS "-march=amdfam10" CACHE STRING "Processor-9 flags")
|
||||||
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 790 B After Width: | Height: | Size: 3.5 KiB |
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
BIN
rtdata/images/openhand_gray22.png
Normal file
After Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 297 B After Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 301 B After Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 294 B After Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 294 B After Width: | Height: | Size: 2.9 KiB |
BIN
rtdata/images/save_hdd_01.png
Normal file
After Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 728 B After Width: | Height: | Size: 3.3 KiB |
@@ -163,7 +163,8 @@ EditorPanel::EditorPanel (FilePanel* filePanel) : beforePreviewHandler(NULL), be
|
|||||||
// Save buttons
|
// Save buttons
|
||||||
Gtk::HBox* iops = Gtk::manage (new Gtk::HBox ());
|
Gtk::HBox* iops = Gtk::manage (new Gtk::HBox ());
|
||||||
|
|
||||||
Gtk::Image *saveButtonImage = Gtk::manage (new Gtk::Image (Gtk::StockID("gtk-save"), Gtk::ICON_SIZE_BUTTON));
|
//Gtk::Image *saveButtonImage = Gtk::manage (new Gtk::Image (Gtk::StockID("gtk-save"), Gtk::ICON_SIZE_BUTTON));
|
||||||
|
Gtk::Image *saveButtonImage = Gtk::manage (new Gtk::Image (argv0+"/images/save_hdd_01.png"));
|
||||||
saveimgas = Gtk::manage (new Gtk::Button ());
|
saveimgas = Gtk::manage (new Gtk::Button ());
|
||||||
saveimgas->add(*saveButtonImage);
|
saveimgas->add(*saveButtonImage);
|
||||||
saveimgas->set_tooltip_markup(M("MAIN_BUTTON_SAVE_TOOLTIP"));
|
saveimgas->set_tooltip_markup(M("MAIN_BUTTON_SAVE_TOOLTIP"));
|
||||||
|
@@ -24,7 +24,7 @@ extern Glib::ustring argv0;
|
|||||||
ToolBar::ToolBar () : listener (NULL) {
|
ToolBar::ToolBar () : listener (NULL) {
|
||||||
|
|
||||||
handTool = Gtk::manage (new Gtk::ToggleButton ());
|
handTool = Gtk::manage (new Gtk::ToggleButton ());
|
||||||
Gtk::Image* handimg = Gtk::manage (new Gtk::Image (argv0+"/images/openhand22.png"));
|
Gtk::Image* handimg = Gtk::manage (new Gtk::Image (argv0+"/images/openhand_gray22.png"));
|
||||||
handTool->add (*handimg);
|
handTool->add (*handimg);
|
||||||
handimg->show ();
|
handimg->show ();
|
||||||
handTool->set_relief(Gtk::RELIEF_NONE);
|
handTool->set_relief(Gtk::RELIEF_NONE);
|
||||||
|