File: buttonbox.hh

package info (click to toggle)
gfcui 2.3.1-8
  • links: PTS
  • area: main
  • in suites: lenny, squeeze
  • size: 43,428 kB
  • ctags: 18,023
  • sloc: cpp: 53,967; sh: 31,606; makefile: 1,324; perl: 108
file content (22 lines) | stat: -rw-r--r-- 447 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <gfc/main.hh>
#include <gfc/gtk/button.hh>
#include <gfc/gtk/buttonbox.hh>
#include <gfc/gtk/frame.hh>
#include <gfc/gtk/window.hh>

using namespace GFC;

class ButtonBoxFrame : public Gtk::Frame
{
public:
	ButtonBoxFrame(bool horizontal, const char *title, int spacing, Gtk::ButtonBoxStyle layout);
	virtual ~ButtonBoxFrame();
};

class ButtonBoxWindow : public Gtk::Window
{
public:
	ButtonBoxWindow();
	virtual ~ButtonBoxWindow();
};