First update of the iconset on behalf of Phil, see issue 1012: Proposal of an icon theme for RT

...still work in progress
This commit is contained in:
natureh
2011-10-18 03:56:33 +02:00
parent c7b5ff71fc
commit 1270c77f3b
33 changed files with 77 additions and 44 deletions

View File

@@ -21,6 +21,7 @@
#include <toolpanel.h>
#include <safegtk.h>
#include <guiutils.h>
#include <rtimage.h>
PlacesBrowser::PlacesBrowser () : listener (NULL) {
@@ -30,8 +31,8 @@ PlacesBrowser::PlacesBrowser () : listener (NULL) {
add = Gtk::manage (new Gtk::Button (M("MAIN_FRAME_PLACES_ADD")));
del = Gtk::manage (new Gtk::Button (M("MAIN_FRAME_PLACES_DEL")));
add->set_image (*Gtk::manage (new Gtk::Image (Gtk::Stock::ADD, Gtk::ICON_SIZE_MENU)));
del->set_image (*Gtk::manage (new Gtk::Image (Gtk::Stock::REMOVE, Gtk::ICON_SIZE_MENU)));
add->set_image (*Gtk::manage (new RTImage ("add.png")));
del->set_image (*Gtk::manage (new RTImage ("list-remove.png")));
Gtk::HBox* buttonBox = Gtk::manage (new Gtk::HBox ());
buttonBox->pack_start (*add);
buttonBox->pack_start (*del);