File: comboboxentry.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 (32 lines) | stat: -rw-r--r-- 506 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
23
24
25
26
27
28
29
30
31
32
#include <gfc/main.hh>
#include <gfc/gtk/comboboxentry.hh>
#include <gfc/gtk/liststore.hh>
#include <gfc/gtk/widgetsignals.hh>
#include <gfc/gtk/window.hh>

using namespace GFC;

/*  ComboBoxEntry
 */

class ComboBoxEntry : public Gtk::ComboBoxEntry
{
public:
	ComboBoxEntry();
};

/*  Window
 */

class Window : public Gtk::Window, protected Gtk::WidgetSignals
{
	ComboBoxEntry *combobox;
	
protected:
	virtual bool on_delete_event(const Gdk::EventAny& event);

public:
	Window();
	virtual ~Window();
};