|
fltk 1.3.0rc3
About: FLTK (Fast Light Tool Kit) is a cross-platform C++ GUI toolkit for UNIX/Linux (X11), Microsoft Windows, and MacOS X. Release candidate.
SfR Fresh Dox: fltk-1.3.0rc3-source.tar.gz ("inofficial" and yet experimental doxygen-generated source code documentation) ![]() |
#include <Fl_Preferences.H>
Public Member Functions | |
| Name (unsigned int n) | |
| Name (const char *format,...) | |
| operator const char * () | |
| ~Name () | |
'Name' provides a simple method to create numerical or more complex procedural names for entries and groups on the fly.
Example: prefs.set(Fl_Preferences::Name("File%d",i),file[i]);.
See test/preferences.cxx as a sample for writing arrays into preferences.
'Name' is actually implemented as a class inside Fl_Preferences. It casts into const char* and gets automatically destroyed after the enclosing call ends.
Definition at line 167 of file Fl_Preferences.H.
| Fl_Preferences::Name::Name | ( | unsigned int | n | ) |
Creates a group name or entry name on the fly.
This version creates a simple unsigned integer as an entry name.
int n, i; Fl_Preferences prev( appPrefs, "PreviousFiles" ); prev.get( "n", 0 ); for ( i=0; i<n; i++ ) prev.get( Fl_Preferences::Name(i), prevFile[i], "" );
Definition at line 923 of file Fl_Preferences.cxx.
| Fl_Preferences::Name::Name | ( | const char * | format, |
| ... | |||
| ) |
Creates a group name or entry name on the fly.
This version creates entry names as in 'printf'.
int n, i; Fl_Preferences prefs( USER, "matthiasm.com", "test" ); prev.get( "nFiles", 0 ); for ( i=0; i<n; i++ ) prev.get( Fl_Preferences::Name( "File%d", i ), prevFile[i], "" );
Definition at line 941 of file Fl_Preferences.cxx.
References vsnprintf.
| Fl_Preferences::Name::~Name | ( | ) |
Definition at line 950 of file Fl_Preferences.cxx.
| Fl_Preferences::Name::operator const char * | ( | ) | [inline] |
Return the Name as a "C" string.
Definition at line 179 of file Fl_Preferences.H.