Navigation buttons.
#include "framedial.h"
#include <gtkmm/image.h>
+#include <gtkmm/stock.h>
#endif
{
Gtk::IconSize iconsize = Gtk::IconSize::from_name("synfig-small_icon");
- seek_begin = create_icon(iconsize, GTK_STOCK_MEDIA_PREVIOUS, _("Seek to Begin"));
- seek_prev_frame = create_icon(iconsize, GTK_STOCK_MEDIA_REWIND, _("Previous Frame"));
- seek_next_frame = create_icon(iconsize, GTK_STOCK_MEDIA_FORWARD, _("Next Frame"));
- seek_end = create_icon(iconsize, GTK_STOCK_MEDIA_NEXT, _("Seek to End"));
+ seek_begin = create_icon(iconsize, Gtk::Stock::MEDIA_PREVIOUS,
+ _("Seek to Begin"));
+ seek_prev_frame = create_icon(iconsize, Gtk::Stock::MEDIA_REWIND,
+ _("Previous Frame"));
+ seek_next_frame = create_icon(iconsize, Gtk::Stock::MEDIA_FORWARD,
+ _("Next Frame"));
+ seek_end = create_icon(iconsize, Gtk::Stock::MEDIA_NEXT,
+ _("Seek to End"));
attach(*seek_begin, 0, 1, 0, 1, Gtk::SHRINK, Gtk::SHRINK, 0, 0);
attach(*seek_prev_frame, 1, 2, 0, 1, Gtk::SHRINK, Gtk::SHRINK, 0, 0);
}
Gtk::Button *
-FrameDial::create_icon(Gtk::IconSize iconsize, const char * stockid,
+FrameDial::create_icon(Gtk::IconSize size, const Gtk::BuiltinStockID & stockid,
const char * tooltip)
{
Gtk::Button *button = manage(new class Gtk::Button());
- Gtk::Image *icon = manage(new Gtk::Image(Gtk::StockID(stockid), iconsize));
+ Gtk::Image *icon = manage(new Gtk::Image(stockid, size));
button->add(*icon);
tooltips.set_tip(*button, tooltip);
icon->set_padding(0, 0);
return button;
}
+
Gtk::Button *seek_next_frame;
Gtk::Button *seek_end;
- Gtk::Button *create_icon(Gtk::IconSize iconsize, const char * stockid, const char * tooltip);
+ Gtk::Button *create_icon(Gtk::IconSize size, const Gtk::BuiltinStockID & stockid,
+ const char * tooltip);
public:
FrameDial();
#include "zoomdial.h"
#include <gtkmm/image.h>
+#include <gtkmm/stock.h>
#include "general.h"
ZoomDial::ZoomDial(Gtk::IconSize & size): Table(3, 1, false)
{
- zoom_in = create_icon(size, GTK_STOCK_ZOOM_IN, _("Zoom In"));
- zoom_out = create_icon(size, GTK_STOCK_ZOOM_OUT, _("Zoom Out"));
- zoom_fit = create_icon(size, GTK_STOCK_ZOOM_FIT, _("Zoom to Fit"));
- zoom_norm = create_icon(size, GTK_STOCK_ZOOM_100, _("Zoom to 100%"));
+ zoom_in = create_icon(size, Gtk::Stock::ZOOM_IN, _("Zoom In"));
+ zoom_out = create_icon(size, Gtk::Stock::ZOOM_OUT, _("Zoom Out"));
+ zoom_fit = create_icon(size, Gtk::Stock::ZOOM_FIT, _("Zoom to Fit"));
+ zoom_norm = create_icon(size, Gtk::Stock::ZOOM_100, _("Zoom to 100%"));
attach(*zoom_out, 0, 1, 0, 1, Gtk::SHRINK, Gtk::SHRINK, 0, 0);
attach(*zoom_norm, 1, 2, 0, 1, Gtk::SHRINK, Gtk::SHRINK, 0, 0);
}
Gtk::Button *
-ZoomDial::create_icon(Gtk::IconSize size, const char * stockid,
+ZoomDial::create_icon(Gtk::IconSize size, const Gtk::BuiltinStockID & stockid,
const char * tooltip)
{
Gtk::Button *button = manage(new class Gtk::Button());
- Gtk::Image *icon = manage(new Gtk::Image(Gtk::StockID(stockid), size));
+ Gtk::Image *icon = manage(new Gtk::Image(stockid, size));
button->add(*icon);
tooltips.set_tip(*button, tooltip);
icon->set_padding(0, 0);
return button;
}
-
Gtk::Button *zoom_fit;
Gtk::Button *zoom_norm;
- Gtk::Button *create_icon(Gtk::IconSize size, const char * stockid,
+ Gtk::Button *create_icon(Gtk::IconSize size, const Gtk::BuiltinStockID & stockid,
const char * tooltip);
public: