summaryrefslogtreecommitdiff
path: root/fluid/Fl_Type.h
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2005-07-19 12:12:15 +0000
committerMatthias Melcher <fltk@matthiasm.com>2005-07-19 12:12:15 +0000
commitf64d694799dce27c44858d2b2c7d80b203d83ed3 (patch)
treee3402904af00009421f12cd222aaffea120e9057 /fluid/Fl_Type.h
parentd1808c6165626f5ee5c9664f0c61da57b5475307 (diff)
Better support for Live mode in Fluid. Most Widget attributes are now supported including pulldown menus (in a very simple, but working way).
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4433 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid/Fl_Type.h')
-rw-r--r--fluid/Fl_Type.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/fluid/Fl_Type.h b/fluid/Fl_Type.h
index b26e713fd..fd77dafab 100644
--- a/fluid/Fl_Type.h
+++ b/fluid/Fl_Type.h
@@ -430,6 +430,7 @@ public:
virtual const char *type_name() {return scroll_type_name;}
Fl_Widget_Type *_make() {return new Fl_Scroll_Type();}
int pixmapID() { return 19; }
+ void copy_properties();
};
extern const char tile_type_name[];
@@ -439,6 +440,7 @@ public:
virtual const char *type_name() {return tile_type_name;}
Fl_Widget_Type *_make() {return new Fl_Tile_Type();}
int pixmapID() { return 20; }
+ void copy_properties();
};
extern const char wizard_type_name[];
@@ -589,6 +591,7 @@ public:
void remove_child(Fl_Type*) {build_menu();}
Fl_Type* click_test(int x, int y);
void write_code2();
+ void copy_properties();
};
extern Fl_Menu_Item button_type_menu[];
@@ -671,6 +674,7 @@ public:
Fl_Widget_Type *_make() {return new Fl_Input_Choice_Type();}
virtual void build_menu();
int pixmapID() { return 15; }
+ void copy_properties();
};
#include <FL/Fl_Window.H>