mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-14 15:05:56 +00:00
0be0fcfd59
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7598 a592a061-630c-0410-9148-cb99ea01b6c8
59 lines
1.3 KiB
C++
59 lines
1.3 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file pixbutton.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author unknown
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef GNOME_PIXBUTTON
|
|
#define GNOME_PIXBUTTON
|
|
|
|
#include <gtk--/button.h>
|
|
#include <gtk--/box.h>
|
|
#include <gtk--/label.h>
|
|
#include <gnome--/pixmap.h>
|
|
#include <gnome--/stock.h>
|
|
|
|
/* Button class used in LyX Gnome frontend for buttons with pixmaps and
|
|
accelerators */
|
|
|
|
namespace Gnome
|
|
{
|
|
class PixButton: public Gtk::Button
|
|
{
|
|
public:
|
|
PixButton(string label, string pixname): Button()
|
|
{
|
|
Gtk::Box * b = manage( new Gtk::HBox() );
|
|
l = manage( new Gtk::Label(label) );
|
|
Gnome::Pixmap * p = Gtk::wrap( GNOME_PIXMAP( gnome_stock_pixmap_widget(0, pixname.c_str()) ) );
|
|
|
|
b->set_spacing(3);
|
|
b->children().push_back(Gtk::Box_Helpers::Element(*p, false, false));
|
|
b->children().push_back(Gtk::Box_Helpers::Element(*l, false, false));
|
|
|
|
add(*b);
|
|
|
|
accelkey_ = l->parse_uline(label);
|
|
|
|
l->show();
|
|
p->show();
|
|
b->show();
|
|
}
|
|
|
|
guint get_accelkey() { return accelkey_; }
|
|
|
|
void set_text(string const & newlabel) { l->set_text(newlabel); }
|
|
|
|
protected:
|
|
guint accelkey_;
|
|
Gtk::Label * l;
|
|
};
|
|
}
|
|
|
|
#endif
|