summaryrefslogtreecommitdiff
path: root/fluid/Fl_Type.h
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-04-26 11:51:54 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-04-26 11:51:54 +0000
commitda9edc35a5c095613a85a35ea0622e4ca244fc6b (patch)
treea61e3137cb8938001f27c397c447e760ba89a7de /fluid/Fl_Type.h
parentee5fdc99cec4d9bf9a91e42fbda9acc757fffebd (diff)
Add lock icon next to static/private elements in FLUID.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2111 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid/Fl_Type.h')
-rw-r--r--fluid/Fl_Type.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/fluid/Fl_Type.h b/fluid/Fl_Type.h
index cb324e297..150eb79a6 100644
--- a/fluid/Fl_Type.h
+++ b/fluid/Fl_Type.h
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Type.h,v 1.5.2.11.2.3 2002/01/01 15:11:29 easysw Exp $"
+// "$Id: Fl_Type.h,v 1.5.2.11.2.4 2002/04/26 11:51:52 easysw Exp $"
//
// Widget type header file for the Fast Light Tool Kit (FLTK).
//
@@ -125,6 +125,7 @@ public:
virtual int is_code_block() const;
virtual int is_decl_block() const;
virtual int is_class() const;
+ virtual int is_public() const;
const char* class_name(const int need_nest) const;
};
@@ -144,6 +145,7 @@ public:
}
int is_parent() const {return 1;}
int is_code_block() const {return 1;}
+ virtual int is_public() const;
void write_properties();
void read_property(const char *);
};
@@ -182,6 +184,7 @@ public:
virtual const char *type_name() {return "decl";}
void write_properties();
void read_property(const char *);
+ virtual int is_public() const;
};
class Fl_DeclBlock_Type : public Fl_Type {
@@ -214,6 +217,7 @@ public:
int is_parent() const {return 1;}
int is_decl_block() const {return 1;}
int is_class() const {return 1;}
+ virtual int is_public() const;
void write_properties();
void read_property(const char *);
};
@@ -275,6 +279,7 @@ public:
virtual Fl_Menu_Item *subtypes();
virtual int is_widget() const;
+ virtual int is_public() const;
virtual void write_properties();
virtual void read_property(const char *);
@@ -560,5 +565,5 @@ int storestring(const char *n, const char * & p, int nostrip=0);
extern int include_H_from_C;
//
-// End of "$Id: Fl_Type.h,v 1.5.2.11.2.3 2002/01/01 15:11:29 easysw Exp $".
+// End of "$Id: Fl_Type.h,v 1.5.2.11.2.4 2002/04/26 11:51:52 easysw Exp $".
//