Update icons
|
@ -36,14 +36,14 @@ set(RESOURCE_LIST
|
|||
stack.ui
|
||||
style.css
|
||||
reset.css
|
||||
icons/16x16/actions/audio-speakers.svg
|
||||
icons/16x16/actions/battery.svg
|
||||
icons/16x16/actions/computer.svg
|
||||
icons/16x16/actions/folder-wifi.svg
|
||||
icons/16x16/actions/finder_audio.svg
|
||||
icons/16x16/actions/finder-battery.svg
|
||||
icons/16x16/actions/finder-computer.svg
|
||||
icons/16x16/actions/finder-wifi.svg
|
||||
icons/16x16/actions/My_GtkUI.png
|
||||
icons/16x16/actions/open-menu.svg
|
||||
icons/48x48/actions/My_GtkUI.png
|
||||
icons/scalable/status/edit-find.svg)
|
||||
icons/scalable/status/finder-find.svg)
|
||||
|
||||
compile_gresources(RESOURCE_FILE
|
||||
XML_OUT
|
||||
|
|
Before Width: | Height: | Size: 643 B After Width: | Height: | Size: 643 B |
Before Width: | Height: | Size: 630 B After Width: | Height: | Size: 630 B |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 377 B After Width: | Height: | Size: 377 B |
|
@ -296,7 +296,7 @@
|
|||
</section>
|
||||
<section>
|
||||
<item>
|
||||
<attribute name="label">Computer</attribute>
|
||||
<attribute name="label">finder-computer</attribute>
|
||||
</item>
|
||||
<item>
|
||||
<attribute name="label">Home</attribute>
|
||||
|
|
|
@ -1 +1,4 @@
|
|||
#include "MyDock.hh"
|
||||
#include "MyDock.hh"
|
||||
|
||||
MyDock::MyDock(){
|
||||
}
|
||||
|
|
|
@ -2,4 +2,10 @@
|
|||
|
||||
#include <gtkmm.h>
|
||||
|
||||
class MyDock : public Gtk::Box{};
|
||||
class MyDock : public Gtk::Box
|
||||
{
|
||||
public:
|
||||
MyDock();
|
||||
private:
|
||||
|
||||
};
|
||||
|
|
|
@ -73,7 +73,7 @@ MyFinder::MyFinder()
|
|||
pack_end(menu_button,Gtk::PACK_SHRINK);
|
||||
|
||||
//Find Button
|
||||
find_button.set_image_from_icon_name("edit-find");
|
||||
find_button.set_image_from_icon_name("finder-find");
|
||||
find_button.set_relief(Gtk::RELIEF_NONE);
|
||||
pack_end(find_button,Gtk::PACK_SHRINK);
|
||||
|
||||
|
@ -85,23 +85,23 @@ MyFinder::MyFinder()
|
|||
|
||||
mytimer = Glib::signal_timeout().connect(sigc::mem_fun(*this, &MyFinder::time_out), 1000);
|
||||
|
||||
//Battery Button
|
||||
battery_button.set_image_from_icon_name("battery");
|
||||
//finder-battery Button
|
||||
battery_button.set_image_from_icon_name("finder-battery");
|
||||
battery_button.set_relief(Gtk::RELIEF_NONE);
|
||||
pack_end(battery_button,Gtk::PACK_SHRINK);
|
||||
|
||||
//NetWork Button
|
||||
network_button.set_image_from_icon_name("folder-wifi");
|
||||
network_button.set_image_from_icon_name("finder-wifi");
|
||||
network_button.set_relief(Gtk::RELIEF_NONE);
|
||||
pack_end(network_button,Gtk::PACK_SHRINK);
|
||||
|
||||
//Audio Button
|
||||
audio_button.set_image_from_icon_name("audio-speakers");
|
||||
audio_button.set_image_from_icon_name("finder_audio");
|
||||
audio_button.set_relief(Gtk::RELIEF_NONE);
|
||||
pack_end(audio_button,Gtk::PACK_SHRINK);
|
||||
|
||||
//Monitor Button
|
||||
screen_button.set_image_from_icon_name("computer");
|
||||
screen_button.set_image_from_icon_name("finder-computer");
|
||||
screen_button.set_relief(Gtk::RELIEF_NONE);
|
||||
pack_end(screen_button,Gtk::PACK_SHRINK);
|
||||
|
||||
|
|