Author: greg.ercolano
Date: 2010-12-04 16:38:16 -0800 (Sat, 04 Dec 2010)
New Revision: 7949
Log:
Reformatting for CMP: Indent fixes, bracing.


Modified:
   branches/branch-1.3/FL/Fl_Preferences.H
   branches/branch-1.3/src/Fl_Preferences.cxx

Modified: branches/branch-1.3/FL/Fl_Preferences.H
===================================================================
--- branches/branch-1.3/FL/Fl_Preferences.H     2010-12-04 12:06:29 UTC (rev 
7948)
+++ branches/branch-1.3/FL/Fl_Preferences.H     2010-12-05 00:38:16 UTC (rev 
7949)
@@ -32,9 +32,8 @@
 #  define Fl_Preferences_H
 
 #  include <stdio.h>
-#  include "Fl_Export.H"
+#  include "Fl_Export.H" 
 
-
 /**
    \brief Fl_Preferences provides methods to store user
    settings between application starts. 
@@ -67,11 +66,9 @@
    current chracter set or code page which renders them incompatible
    for text entries using international characters.
  */
-class FL_EXPORT Fl_Preferences 
-{
+class FL_EXPORT Fl_Preferences {
 
-public:
-
+public: 
   /**
      Define the scope of the preferences.
    */
@@ -171,8 +168,7 @@
 
     char *data_;
 
-  public:
-
+  public: 
     Name( unsigned int n );
     Name( const char *format, ... );
 
@@ -185,13 +181,11 @@
   };
 
   /** \internal An entry associates a preference name to its corresponding 
value */
-  struct Entry
-  {
+  struct Entry {
     char *name, *value;
   };
 
-private:
-
+private: 
   Fl_Preferences() : node(0), rootNode(0) { }
   Fl_Preferences &operator=(const Fl_Preferences&);
 
@@ -201,12 +195,12 @@
 
   class RootNode;
   
-  class FL_EXPORT Node // a node contains a list to all its entries 
-  {          // and all means to manage the tree structure
+  class FL_EXPORT Node {       // a node contains a list to all its entries 
+                               // and all means to manage the tree structure
     Node *child_, *next_;
-    union { // these two are mutually exclusive
-      Node *parent_;    // top_ bit clear
-      RootNode *root_;  // top_ bit set
+    union {                    // these two are mutually exclusive
+      Node *parent_;                   // top_ bit clear
+      RootNode *root_;                 // top_ bit set
     };
     char *path_;
     Entry *entry_;
@@ -255,8 +249,7 @@
   };
   friend class Node;
 
-  class FL_EXPORT RootNode  // the root node manages file paths and basic 
reading and writing
-  {
+  class FL_EXPORT RootNode {           // the root node manages file paths and 
basic reading and writing
     Fl_Preferences *prefs_;
     char *filename_;
     char *vendor_, *application_;
@@ -272,12 +265,10 @@
   friend class RootNode;
 
 protected:
-  
   Node *node;
   RootNode *rootNode;
 };
 
-
 #endif // !Fl_Preferences_H
 
 //

Modified: branches/branch-1.3/src/Fl_Preferences.cxx
===================================================================
--- branches/branch-1.3/src/Fl_Preferences.cxx  2010-12-04 12:06:29 UTC (rev 
7948)
+++ branches/branch-1.3/src/Fl_Preferences.cxx  2010-12-05 00:38:16 UTC (rev 
7949)
@@ -84,8 +84,7 @@
  * \return a pointer to a static buffer containing the new UUID in ASCII 
format.
  *         The buffer is overwritten during every call to this function!
  */
-const char *Fl_Preferences::newUUID()
-{
+const char *Fl_Preferences::newUUID() {
 #ifdef __APPLE__
   CFUUIDRef theUUID = CFUUIDCreate(NULL);
   CFUUIDBytes b = CFUUIDGetUUIDBytes(theUUID);
@@ -103,18 +102,18 @@
   UUID *pu = &ud;
   int got_uuid = 0;
 
-  if(!hMod){ // first time in?
+  if (!hMod) {         // first time in?
     hMod = LoadLibrary("Rpcrt4.dll");
   }
 
-  if(hMod){ // do we have a usable handle to Rpcrt4.dll?
+  if (hMod) {          // do we have a usable handle to Rpcrt4.dll?
     uuid_func uuid_crt = (uuid_func)GetProcAddress(hMod, "UuidCreate");
-    if(uuid_crt != NULL) {
+    if (uuid_crt != NULL) {
       RPC_STATUS rpc_res = uuid_crt(pu);
-      if( // is the return status OK for our needs?
-          (rpc_res == RPC_S_OK) || // all is well
+      if ( // is the return status OK for our needs?
+          (rpc_res == RPC_S_OK) ||             // all is well
           (rpc_res == RPC_S_UUID_LOCAL_ONLY) || // only unique to this machine
-          (rpc_res == RPC_S_UUID_NO_ADDRESS) // probably only locally unique
+          (rpc_res == RPC_S_UUID_NO_ADDRESS)   // probably only locally unique
         ) {
         got_uuid = -1;
         sprintf(uuidBuffer, 
"%08lX-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X",
@@ -124,14 +123,14 @@
       }
     }
   }
-  if(got_uuid == 0) { // did not make a UUID - use fallback logic
+  if (got_uuid == 0) {         // did not make a UUID - use fallback logic
     unsigned char b[16];
-    time_t t = time(0); // first 4 byte
+    time_t t = time(0);                // first 4 byte
     b[0] = (unsigned char)t;
     b[1] = (unsigned char)(t>>8);
     b[2] = (unsigned char)(t>>16);
     b[3] = (unsigned char)(t>>24);
-    int r = rand(); // four more bytes
+    int r = rand();            // four more bytes
     b[4] = (unsigned char)r;
     b[5] = (unsigned char)(r>>8);
     b[6] = (unsigned char)(r>>16);
@@ -142,7 +141,7 @@
     // This is now done via a union to make it compile OK on 64-bit systems.
     union { void *pv; unsigned char a[sizeof(void*)]; } v;
     v.pv = (void *)(&t);
-       // NOTE: This assume that all WinXX systems are little-endian
+    // NOTE: This assume that all WinXX systems are little-endian
     b[8] = v.a[0];
     b[9] = v.a[1];
     b[10] = v.a[2];
@@ -153,7 +152,7 @@
     // analogous to gethostname()
     GetComputerName(name, &nSize);
     //  use the first 4 TCHAR's of the name to create the last 4 bytes of our 
UUID
-    for(int ii = 0; ii < 4; ii++){
+    for (int ii = 0; ii < 4; ii++) {
       b[12 + ii] = (unsigned char)name[ii];
     }
     sprintf(uuidBuffer, 
"%02X%02X%02X%02X-%02X%02X-%02X%02X-%02X%02X-%02X%02X%02X%02X%02X%02X",
@@ -165,17 +164,17 @@
   // #include <uuid/uuid.h>
   // void uuid_generate(uuid_t out);
   unsigned char b[16];
-  time_t t = time(0); // first 4 byte
+  time_t t = time(0);                  // first 4 byte
   b[0] = (unsigned char)t;
   b[1] = (unsigned char)(t>>8);
   b[2] = (unsigned char)(t>>16);
   b[3] = (unsigned char)(t>>24);
-  int r = rand(); // four more bytes
+  int r = rand();                      // four more bytes
   b[4] = (unsigned char)r;
   b[5] = (unsigned char)(r>>8);
   b[6] = (unsigned char)(r>>16);
   b[7] = (unsigned char)(r>>24);
-  unsigned long a = (unsigned long)&t; // four more bytes
+  unsigned long a = (unsigned long)&t; // four more bytes
   b[8] = (unsigned char)a;
   b[9] = (unsigned char)(a>>8);
   b[10] = (unsigned char)(a>>16);
@@ -198,7 +197,7 @@
   b[10] = v.a[2];
   b[11] = v.a[3];
 # endif
-  char name[80]; // last four bytes
+  char name[80];                       // last four bytes
   gethostname(name, 79);
   memcpy(b+12, name, 4);
   sprintf(uuidBuffer, 
"%02X%02X%02X%02X-%02X%02X-%02X%02X-%02X%02X-%02X%02X%02X%02X%02X%02X",
@@ -209,7 +208,6 @@
   return uuidBuffer;
 }
 
-
 /**
    The constructor creates a group that manages name/value pairs and
    child groups. Groups are ready for reading and writing at any time.
@@ -236,14 +234,12 @@
    \param[in] vendor unique text describing the company or author of this file
    \param[in] application unique text describing the application
 */
-Fl_Preferences::Fl_Preferences( Root root, const char *vendor, const char 
*application )
-{
+Fl_Preferences::Fl_Preferences( Root root, const char *vendor, const char 
*application ) {
   node = new Node( "." );
   rootNode = new RootNode( this, root, vendor, application );
   node->setRoot(rootNode);
 }
 
-
 /**
    \brief Use this constructor to create or read a preferences file at an
    arbitrary position in the file system.
@@ -256,14 +252,12 @@
    \param[in] vendor unique text describing the company or author of this file
    \param[in] application unique text describing the application
  */
-Fl_Preferences::Fl_Preferences( const char *path, const char *vendor, const 
char *application )
-{
+Fl_Preferences::Fl_Preferences( const char *path, const char *vendor, const 
char *application ) {
   node = new Node( "." );
   rootNode = new RootNode( this, path, vendor, application );
   node->setRoot(rootNode);
 }
 
-
 /**
    \brief Generate or read a new group of entries within another group.
 
@@ -274,13 +268,11 @@
    \param[in] parent reference object for the new group
    \param[in] group name of the group to access (may contain '/'s)
  */
-Fl_Preferences::Fl_Preferences( Fl_Preferences &parent, const char *group )
-{
+Fl_Preferences::Fl_Preferences( Fl_Preferences &parent, const char *group ) {
   rootNode = parent.rootNode;
   node = parent.node->addChild( group );
 }
 
-
 /**
    \brief Create or access a group of preferences using a name.
    \param[in] parent the parameter parent is a pointer to the parent group.
@@ -291,8 +283,7 @@
    \param[in] group a group name that is used as a key into the database
    \see Fl_Preferences( Fl_Preferences&, const char *group )
  */
-Fl_Preferences::Fl_Preferences( Fl_Preferences *parent, const char *group )
-{
+Fl_Preferences::Fl_Preferences( Fl_Preferences *parent, const char *group ) {
   if (parent==0) {
     if (!runtimePrefs) {
       runtimePrefs = new Fl_Preferences();
@@ -306,7 +297,6 @@
   node = parent->node->addChild( group );
 }
 
-
 /**
  \brief Open a child group using a given index.
 
@@ -320,8 +310,7 @@
  \param[in] parent reference object for the new group
  \param[in] groupIndex zero based index into child groups
  */
-Fl_Preferences::Fl_Preferences( Fl_Preferences &parent, int groupIndex )
-{
+Fl_Preferences::Fl_Preferences( Fl_Preferences &parent, int groupIndex ) {
   rootNode = parent.rootNode;
   if (groupIndex<0 || groupIndex>=parent.groups()) {
     node = parent.node->addChild( newUUID() );
@@ -330,12 +319,10 @@
   }
 }
 
-
 /**
  \see Fl_Preferences( Fl_Preferences&, int groupIndex )
  */
-Fl_Preferences::Fl_Preferences( Fl_Preferences *parent, int groupIndex )
-{
+Fl_Preferences::Fl_Preferences( Fl_Preferences *parent, int groupIndex ) {
   rootNode = parent->rootNode;
   if (groupIndex<0 || groupIndex>=parent->groups()) {
     node = parent->node->addChild( newUUID() );
@@ -344,7 +331,6 @@
   }
 }
 
-
 /**
  Create a new dataset access point using a dataset ID.
 
@@ -356,8 +342,7 @@
  ID's can be put very helpful when put into the <tt>user_data()</tt> field of
  widget callbacks.
  */
-Fl_Preferences::Fl_Preferences( Fl_Preferences::ID id )
-{
+Fl_Preferences::Fl_Preferences( Fl_Preferences::ID id ) {
   node = (Node*)id;
   rootNode = node->findRoot();
 }
@@ -381,7 +366,6 @@
   return *this;
 }
 
-
 /**
    The destructor removes allocated resources. When used on the
    \em base preferences group, the destructor flushes all
@@ -391,8 +375,7 @@
    The destructor does not remove any data from the database. It merely
    deletes your reference to the database.
  */
-Fl_Preferences::~Fl_Preferences()
-{
+Fl_Preferences::~Fl_Preferences() {
   if (node && !node->parent()) delete rootNode;
   // DO NOT delete nodes! The root node will do that after writing the 
preferences
   // zero all pointer to avoid memory errors, even though
@@ -401,18 +384,15 @@
   rootNode = 0L;
 }
 
-
 /**
    Returns the number of groups that are contained within a group.
 
    \return 0 for no groups at all
  */
-int Fl_Preferences::groups()
-{
+int Fl_Preferences::groups() {
   return node->nChildren();
 }
 
-
 /**
    Returns the name of the Nth (\p num_group) group.
    There is no guaranteed order of group names. The index must
@@ -421,12 +401,10 @@
    \param[in] num_group number indexing the requested group
    \return 'C' string pointer to the group name
  */
-const char *Fl_Preferences::group( int num_group )
-{
+const char *Fl_Preferences::group( int num_group ) {
   return node->child( num_group );
 }
 
-
 /**
    Returns non-zero if a group with this name exists.
    Group names are relative to the Preferences node and can contain a path.
@@ -436,12 +414,10 @@
    \param[in] key name of group that is searched for
    \return 0 if no group by that name was found
  */
-char Fl_Preferences::groupExists( const char *key )
-{
+char Fl_Preferences::groupExists( const char *key ) {
   return node->search( key ) ? 1 : 0 ;
 }
 
-
 /**
    Deletes a group.
 
@@ -451,8 +427,7 @@
    \param[in] group name of the group to delete
    \return 0 if call failed
  */
-char Fl_Preferences::deleteGroup( const char *group )
-{
+char Fl_Preferences::deleteGroup( const char *group ) {
   Node *nd = node->search( group );
   if ( nd ) return nd->remove();
   return 0;
@@ -461,8 +436,7 @@
 /**
  Delete all groups.
  */
-char Fl_Preferences::deleteAllGroups()
-{
+char Fl_Preferences::deleteAllGroups() {
   node->deleteAllChildren();
   return 1;
 }
@@ -472,12 +446,10 @@
 
    \return number of entries
  */
-int Fl_Preferences::entries()
-{
+int Fl_Preferences::entries() {
   return node->nEntry();
 }
 
-
 /**
    Returns the name of an entry. There is no guaranteed order of
    entry names. The index must be within the range given by
@@ -486,24 +458,20 @@
    \param[in] index number indexing the requested entry
    \return pointer to value cstring
  */
-const char *Fl_Preferences::entry( int index )
-{
+const char *Fl_Preferences::entry( int index ) {
   return node->entry(index).name;
 }
 
-
 /**
    Returns non-zero if an entry with this name exists.
 
    \param[in] key name of entry that is searched for
    \return 0 if entry was not found
  */
-char Fl_Preferences::entryExists( const char *key )
-{
+char Fl_Preferences::entryExists( const char *key ) {
   return node->getEntry( key )>=0 ? 1 : 0 ;
 }
 
-
 /**
    Deletes a single name/value pair.
 
@@ -512,16 +480,14 @@
    \param[in] key name of entry to delete
    \return 0 if deleting the entry failed
  */
-char Fl_Preferences::deleteEntry( const char *key )
-{
+char Fl_Preferences::deleteEntry( const char *key ) {
   return node->deleteEntry( key );
 }
 
 /**
  Delete all entries.
  */
-char Fl_Preferences::deleteAllEntries()
-{
+char Fl_Preferences::deleteAllEntries() {
   node->deleteAllEntries();
   return 1;
 }
@@ -529,8 +495,7 @@
 /**
  Delete all groups and all entries.
  */
-char Fl_Preferences::clear()
-{
+char Fl_Preferences::clear() {
   char ret1 = deleteAllGroups();
   char ret2 = deleteAllEntries();
   return ret1 & ret2;
@@ -546,14 +511,12 @@
  \param[in] defaultValue default value to be used if no preference was set
  \return 0 if the default value was used
  */
-char Fl_Preferences::get( const char *key, int &value, int defaultValue )
-{
+char Fl_Preferences::get( const char *key, int &value, int defaultValue ) {
   const char *v = node->get( key );
   value = v ? atoi( v ) : defaultValue;
   return ( v != 0 );
 }
 
-
 /**
  Sets an entry (name/value pair). The return value indicates if there
  was a problem storing the data in memory. However it does not
@@ -564,14 +527,12 @@
  \param[in] value set this entry to \p value
  \return 0 if setting the value failed
  */
-char Fl_Preferences::set( const char *key, int value )
-{
+char Fl_Preferences::set( const char *key, int value ) {
   sprintf( nameBuffer, "%d", value );
   node->set( key, nameBuffer );
   return 1;
 }
 
-
 /**
  Reads an entry from the group. A default value must be
  supplied. The return value indicates if the value was available
@@ -582,14 +543,12 @@
  \param[in] defaultValue default value to be used if no preference was set
  \return 0 if the default value was used
  */
-char Fl_Preferences::get( const char *key, float &value, float defaultValue )
-{
+char Fl_Preferences::get( const char *key, float &value, float defaultValue ) {
   const char *v = node->get( key );
   value = v ? (float)atof( v ) : defaultValue;
   return ( v != 0 );
 }
 
-
 /**
  Sets an entry (name/value pair). The return value indicates if there
  was a problem storing the data in memory. However it does not
@@ -600,14 +559,12 @@
  \param[in] value set this entry to \p value
  \return 0 if setting the value failed
  */
-char Fl_Preferences::set( const char *key, float value )
-{
+char Fl_Preferences::set( const char *key, float value ) {
   sprintf( nameBuffer, "%g", value );
   node->set( key, nameBuffer );
   return 1;
 }
 
-
 /**
  Sets an entry (name/value pair). The return value indicates if there
  was a problem storing the data in memory. However it does not
@@ -619,14 +576,12 @@
  \param[in] precision number of decimal digits to represent value
  \return 0 if setting the value failed
  */
-char Fl_Preferences::set( const char *key, float value, int precision )
-{
+char Fl_Preferences::set( const char *key, float value, int precision ) {
   sprintf( nameBuffer, "%.*g", precision, value );
   node->set( key, nameBuffer );
   return 1;
 }
 
-
 /**
  Reads an entry from the group. A default value must be
  supplied. The return value indicates if the value was available
@@ -637,14 +592,12 @@
  \param[in] defaultValue default value to be used if no preference was set
  \return 0 if the default value was used
  */
-char Fl_Preferences::get( const char *key, double &value, double defaultValue )
-{
+char Fl_Preferences::get( const char *key, double &value, double defaultValue 
) {
   const char *v = node->get( key );
   value = v ? atof( v ) : defaultValue;
   return ( v != 0 );
 }
 
-
 /**
  Sets an entry (name/value pair). The return value indicates if there
  was a problem storing the data in memory. However it does not
@@ -655,14 +608,12 @@
  \param[in] value set this entry to \p value
  \return 0 if setting the value failed
  */
-char Fl_Preferences::set( const char *key, double value )
-{
+char Fl_Preferences::set( const char *key, double value ) {
   sprintf( nameBuffer, "%g", value );
   node->set( key, nameBuffer );
   return 1;
 }
 
-
 /**
  Sets an entry (name/value pair). The return value indicates if there
  was a problem storing the data in memory. However it does not
@@ -674,21 +625,17 @@
  \param[in] precision number of decimal digits to represent value
  \return 0 if setting the value failed
  */
-char Fl_Preferences::set( const char *key, double value, int precision )
-{
+char Fl_Preferences::set( const char *key, double value, int precision ) {
   sprintf( nameBuffer, "%.*g", precision, value );
   node->set( key, nameBuffer );
   return 1;
 }
 
-
 // remove control sequences from a string
-static char *decodeText( const char *src )
-{
+static char *decodeText( const char *src ) {
   int len = 0;
   const char *s = src;
-  for ( ; *s; s++, len++ )
-  {
+  for ( ; *s; s++, len++ ) {
     if ( *s == '\\' ) {
       if ( isdigit( s[1] ) ) {
         s+=3; 
@@ -698,11 +645,9 @@
     }
   }
   char *dst = (char*)malloc( len+1 ), *d = dst;
-  for ( s = src; *s; s++ )
-  {
+  for ( s = src; *s; s++ ) {
     char c = *s;
-    if ( c == '\\' )
-    {
+    if ( c == '\\' ) {
       if ( s[1] == '\\' ) { *d++ = c; s++; }
       else if ( s[1] == 'n' ) { *d++ = '\n'; s++; }
       else if ( s[1] == 'r' ) { *d++ = '\r'; s++; }
@@ -716,7 +661,6 @@
   return dst;
 }
 
-
 /**
  Reads an entry from the group. A default value must be
  supplied. The return value indicates if the value was available
@@ -730,8 +674,7 @@
  \param[in] maxSize maximum length of value plus one byte for a trailing zero
  \return 0 if the default value was used
  */
-char Fl_Preferences::get( const char *key, char *text, const char 
*defaultValue, int maxSize )
-{
+char Fl_Preferences::get( const char *key, char *text, const char 
*defaultValue, int maxSize ) {
   const char *v = node->get( key );
   if ( v && strchr( v, '\\' ) ) {
     char *w = decodeText( v );
@@ -745,7 +688,6 @@
   return ( v != defaultValue );
 }
 
-
 /**
  Reads an entry from the group. A default value must be
  supplied. The return value indicates if the value was available
@@ -758,11 +700,9 @@
  \param[in] defaultValue default value to be used if no preference was set
  \return 0 if the default value was used
  */
-char Fl_Preferences::get( const char *key, char *&text, const char 
*defaultValue )
-{
+char Fl_Preferences::get( const char *key, char *&text, const char 
*defaultValue ) {
   const char *v = node->get( key );
-  if ( v && strchr( v, '\\' ) )
-  {
+  if ( v && strchr( v, '\\' ) ) {
     text = decodeText( v );
     return 1;
   }
@@ -774,8 +714,6 @@
   return ( v != defaultValue );
 }
 
-
-
 /**
  Sets an entry (name/value pair). The return value indicates if there
  was a problem storing the data in memory. However it does not
@@ -786,16 +724,13 @@
  \param[in] text set this entry to \p value
  \return 0 if setting the value failed
  */
-char Fl_Preferences::set( const char *key, const char *text )
-{
+char Fl_Preferences::set( const char *key, const char *text ) {
   const char *s = text ? text : "";
   int n=0, ns=0;
   for ( ; *s; s++ ) { n++; if ( *s<32 || *s=='\\' || *s==0x7f ) ns+=4; }
-  if ( ns )
-  {
+  if ( ns ) {
     char *buffer = (char*)malloc( n+ns+1 ), *d = buffer;
-    for ( s=text; *s; )
-    {
+    for ( s=text; *s; ) {
       char c = *s;
       if ( c=='\\' ) { *d++ = '\\'; *d++ = '\\'; s++; }
       else if ( c=='\n' ) { *d++ = '\\'; *d++ = 'n'; s++; }
@@ -813,17 +748,12 @@
   return 1;
 }
 
-
 // convert a hex string to binary data
-static void *decodeHex( const char *src, int &size )
-{
+static void *decodeHex( const char *src, int &size ) {
   size = strlen( src )/2;
   unsigned char *data = (unsigned char*)malloc( size ), *d = data;
   const char *s = src;
-  int i;
-
-  for ( i=size; i>0; i-- )
-  {
+  for ( int i=size; i>0; i-- ) {
     int v;
     char x = tolower(*s++);
     if ( x >= 'a' ) v = x-'a'+10; else v = x-'0';
@@ -832,11 +762,9 @@
     if ( x >= 'a' ) v += x-'a'+10; else v += x-'0';
     *d++ = (uchar)v;
   }
-
   return (void*)data;
 }
 
-
 /**
  Reads an entry from the group. A default value must be
  supplied. The return value indicates if the value was available
@@ -852,11 +780,9 @@
 
  \todo maxSize should receive the number of bytes that were read.
  */
-char Fl_Preferences::get( const char *key, void *data, const void 
*defaultValue, int defaultSize, int maxSize )
-{
+char Fl_Preferences::get( const char *key, void *data, const void 
*defaultValue, int defaultSize, int maxSize ) {
   const char *v = node->get( key );
-  if ( v )
-  {
+  if ( v ) {
     int dsize;
     void *w = decodeHex( v, dsize );
     memmove( data, w, dsize>maxSize?maxSize:dsize );
@@ -868,7 +794,6 @@
   return 0;
 }
 
-
 /**
  Reads an entry from the group. A default value must be
  supplied. The return value indicates if the value was available
@@ -882,17 +807,14 @@
  \param[in] defaultSize size of default value array
  \return 0 if the default value was used
  */
-char Fl_Preferences::get( const char *key, void *&data, const void 
*defaultValue, int defaultSize )
-{
+char Fl_Preferences::get( const char *key, void *&data, const void 
*defaultValue, int defaultSize ) {
   const char *v = node->get( key );
-  if ( v )
-  {
+  if ( v ) {
     int dsize;
     data = decodeHex( v, dsize );
     return 1;
   }
-  if ( defaultValue )
-  {
+  if ( defaultValue ) {
     data = (void*)malloc( defaultSize );
     memmove( data, defaultValue, defaultSize );
   }
@@ -901,7 +823,6 @@
   return 0;
 }
 
-
 /**
  Sets an entry (name/value pair). The return value indicates if there
  was a problem storing the data in memory. However it does not
@@ -913,12 +834,10 @@
  \param[in] dsize size of data array
  \return 0 if setting the value failed
  */
-char Fl_Preferences::set( const char *key, const void *data, int dsize )
-{
+char Fl_Preferences::set( const char *key, const void *data, int dsize ) {
   char *buffer = (char*)malloc( dsize*2+1 ), *d = buffer;;
   unsigned char *s = (unsigned char*)data;
-  for ( ; dsize>0; dsize-- )
-  {
+  for ( ; dsize>0; dsize-- ) {
     static char lu[] = "0123456789abcdef";
     unsigned char v = *s++;
     *d++ = lu[v>>4];
@@ -930,20 +849,17 @@
   return 1;
 }
 
-
 /**
  Returns the size of the value part of an entry.
 
  \param[in] key name of entry
  \return size of value
  */
-int Fl_Preferences::size( const char *key )
-{
+int Fl_Preferences::size( const char *key ) {
   const char *v = node->get( key );
   return v ? strlen( v ) : 0 ;
 }
 
-
 /**
  \brief Creates a path that is related to the preferences file and
  that is usable for additional application data.
@@ -971,8 +887,7 @@
  \param[in] pathlen size of path buffer (should be at least \c FL_PATH_MAX)
  \return 0 if path was not created or pathname can't fit into buffer
  */
-char Fl_Preferences::getUserdataPath( char *path, int pathlen )
-{
+char Fl_Preferences::getUserdataPath( char *path, int pathlen ) {
   if ( rootNode )
     return rootNode->getPath( path, pathlen );
   return 0;
@@ -983,8 +898,7 @@
  the base preferences group. This function is rarely used as
  deleting the base preferences flushes automatically.
  */
-void Fl_Preferences::flush()
-{
+void Fl_Preferences::flush() {
   if ( rootNode && node->dirty() )
     rootNode->write();
 }
@@ -1006,8 +920,7 @@
        prev.get( Fl_Preferences::Name(i), prevFile[i], "" );
    \endcode
  */
-Fl_Preferences::Name::Name( unsigned int n )
-{
+Fl_Preferences::Name::Name( unsigned int n ) {
   data_ = (char*)malloc(20);
   sprintf(data_, "%u", n);
 }
@@ -1025,8 +938,7 @@
        prev.get( Fl_Preferences::Name( "File%d", i ), prevFile[i], "" );
     \endcode
  */
-Fl_Preferences::Name::Name( const char *format, ... )
-{
+Fl_Preferences::Name::Name( const char *format, ... ) {
   data_ = (char*)malloc(1024);
   va_list args;
   va_start(args, format);
@@ -1035,8 +947,7 @@
 }
 
 // delete the name
-Fl_Preferences::Name::~Name()
-{
+Fl_Preferences::Name::~Name() {
   if (data_) {
     free(data_);
     data_ = 0L;
@@ -1071,8 +982,7 @@
 
 #if 0
 // strip the filename and create a path
-static void makePathForFile( const char *path )
-{
+static void makePathForFile( const char *path ) {
   const char *s = strrchr( path, '/' );
   if ( !s ) return;
   int len = s-path;
@@ -1090,8 +1000,8 @@
 : prefs_(prefs),
   filename_(0L),
   vendor_(0L),
-  application_(0L)
-{
+  application_(0L) {
+
   char filename[ FL_PATH_MAX ]; filename[0] = 0;
 #ifdef WIN32
 #  define FLPREFS_RESOURCE     
"Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders"
@@ -1103,41 +1013,32 @@
 
   switch (root) {
     case SYSTEM:
-
-        err = RegOpenKeyW( HKEY_LOCAL_MACHINE, FLPREFS_RESOURCEW, &key );
-
+      err = RegOpenKeyW( HKEY_LOCAL_MACHINE, FLPREFS_RESOURCEW, &key );
       if (err == ERROR_SUCCESS) {
-       nn = FL_PATH_MAX - appDataLen;
-
-               err = RegQueryValueExW( key, L"Common AppData", 0L, &type,
-                                        (BYTE*)filename, &nn );
-
-               if ( ( err != ERROR_SUCCESS ) && ( type == REG_SZ ) ) {
-         filename[0] = 0;
-                       filename[1] = 0;
-               }
-               RegCloseKey(key);
+        nn = FL_PATH_MAX - appDataLen; 
+        err = RegQueryValueExW( key, L"Common AppData", 0L, &type,
+                                (BYTE*)filename, &nn ); 
+        if ( ( err != ERROR_SUCCESS ) && ( type == REG_SZ ) ) {
+          filename[0] = 0;
+          filename[1] = 0;
+        }
+        RegCloseKey(key);
       }
       break;
     case USER:
-        err = RegOpenKeyW( HKEY_CURRENT_USER, FLPREFS_RESOURCEW, &key );
-
-
+      err = RegOpenKeyW( HKEY_CURRENT_USER, FLPREFS_RESOURCEW, &key );
       if (err == ERROR_SUCCESS) {
-       nn = FL_PATH_MAX - appDataLen;
-          err = RegQueryValueExW( key, L"AppData", 0L, &type,
-                                 (BYTE*)filename, &nn );
-
+        nn = FL_PATH_MAX - appDataLen;
+        err = RegQueryValueExW( key, L"AppData", 0L, &type,
+                                (BYTE*)filename, &nn ); 
         if ( ( err != ERROR_SUCCESS ) && ( type == REG_SZ ) ) {
-           filename[0] = 0;
-        filename[1] = 0;
+          filename[0] = 0;
+          filename[1] = 0;
        }
         RegCloseKey(key);
       }
       break;
-  }
-
-
+  } 
   if (!filename[1] && !filename[0]) {
     strcpy(filename, "C:\\FLTK");
   } else {
@@ -1167,7 +1068,7 @@
       strcpy(filename, "/Library/Preferences");
       break;
     case USER:
-         sprintf(filename, "%s/Library/Preferences", fl_getenv("HOME"));
+      sprintf(filename, "%s/Library/Preferences", fl_getenv("HOME"));
       break;
   }
   snprintf(filename + strlen(filename), sizeof(filename) - strlen(filename),
@@ -1185,21 +1086,17 @@
          strlcat(filename, ".fltk/", sizeof(filename));
        }
        break;
-      }
-
+      } 
     case SYSTEM:
       strcpy(filename, "/etc/fltk/");
       break;
-  }
-
+  } 
   snprintf(filename + strlen(filename), sizeof(filename) - strlen(filename),
            "%s/%s.prefs", vendor, application);
-#endif
-
+#endif 
   filename_    = strdup(filename);
   vendor_      = strdup(vendor);
-  application_ = strdup(application);
-
+  application_ = strdup(application); 
   read();
 }
 
@@ -1209,8 +1106,8 @@
 : prefs_(prefs),
   filename_(0L),
   vendor_(0L),
-  application_(0L)
-{
+  application_(0L) {
+
   if (!vendor)
     vendor = "unknown";
   if (!application) {
@@ -1222,8 +1119,7 @@
     filename_  = strdup(filename);
   }
   vendor_      = strdup(vendor);
-  application_ = strdup(application);
-
+  application_ = strdup(application); 
   read();
 }
 
@@ -1233,13 +1129,11 @@
 : prefs_(prefs),
   filename_(0L),
   vendor_(0L),
-  application_(0L)
-{
+  application_(0L) {
 }
 
 // destroy the root node and all depending nodes
-Fl_Preferences::RootNode::~RootNode()
-{
+Fl_Preferences::RootNode::~RootNode() {
   if ( prefs_->node->dirty() )
     write();
   if ( filename_ ) {
@@ -1259,43 +1153,32 @@
 }
 
 // read a preferences file and construct the group tree and with all entry 
leafs
-int Fl_Preferences::RootNode::read()
-{
+int Fl_Preferences::RootNode::read() {
   if (!filename_)   // RUNTIME preferences
-    return -1;
-
+    return -1; 
   char buf[1024];
   FILE *f = fl_fopen( filename_, "rb" );
   if ( !f )
-    return -1;
-
+    return -1; 
   if (fgets( buf, 1024, f )==0) { /* ignore */ }
   if (fgets( buf, 1024, f )==0) { /* ignore */ }
   if (fgets( buf, 1024, f )==0) { /* ignore */ }
   Node *nd = prefs_->node;
-  for (;;)
-  {
+  for (;;) {
     if ( !fgets( buf, 1024, f ) ) break;       // EOF or Error
-    if ( buf[0]=='[' ) // read a new group
-    {
+    if ( buf[0]=='[' ) {                       // read a new group
       int end = strcspn( buf+1, "]\n\r" );
       buf[ end+1 ] = 0;
       nd = prefs_->node->find( buf+1 );
-    }
-    else if ( buf[0]=='+' ) //
-    { // value of previous name/value pair spans multiple lines
+    } else if ( buf[0]=='+' ) {                        // value of previous 
name/value pair spans multiple lines
       int end = strcspn( buf+1, "\n\r" );
-      if ( end != 0 ) // if entry is not empty
-      {
+      if ( end != 0 ) {                                // if entry is not empty
        buf[ end+1 ] = 0;
        nd->add( buf+1 );
       }
-    }
-    else // read a name/value pair
-    {
+    } else {                                    // read a name/value pair
       int end = strcspn( buf, "\n\r" );
-      if ( end != 0 ) // if entry is not empty
-      {
+      if ( end != 0 ) {                                // if entry is not empty
        buf[ end ] = 0;
        nd->set( buf );
       }
@@ -1306,16 +1189,13 @@
 }
 
 // write the group tree and all entry leafs
-int Fl_Preferences::RootNode::write()
-{
+int Fl_Preferences::RootNode::write() {
   if (!filename_)   // RUNTIME preferences
-    return -1;
-
+    return -1; 
   fl_make_path_for_file(filename_);
   FILE *f = fl_fopen( filename_, "wb" );
   if ( !f )
-    return -1;
-
+    return -1; 
   fprintf( f, "; FLTK preferences file format 1.0\n" );
   fprintf( f, "; vendor: %s\n", vendor_ );
   fprintf( f, "; application: %s\n", application_ );
@@ -1326,27 +1206,24 @@
   if (strncmp(filename_, "/etc/fltk/", 10) == 0) {
     char *p;
     p = filename_ + 9;
-    do { // for each directory to the pref file
+    do {                        // for each directory to the pref file
       *p = 0;
       fl_chmod(filename_, 0755); // rwxr-xr-x
       *p = '/';
       p = strchr(p+1, '/');
-      }
-    while (p);
-    fl_chmod(filename_, 0644); // rw-r--r--
-    }
+    } while (p);
+    fl_chmod(filename_, 0644);   // rw-r--r--
+  }
 #endif
   return 0;
 }
 
 // get the path to the preferences directory
-char Fl_Preferences::RootNode::getPath( char *path, int pathlen )
-{
+char Fl_Preferences::RootNode::getPath( char *path, int pathlen ) {
   if (!filename_)   // RUNTIME preferences
-    return -1;
+    return -1; 
+  strlcpy( path, filename_, pathlen); 
 
-  strlcpy( path, filename_, pathlen);
-
   char *s;
   for ( s = path; *s; s++ ) if ( *s == '\\' ) *s = '/';
   s = strrchr( path, '.' );
@@ -1365,8 +1242,7 @@
 
 // create a node that represents a group
 // - path must be a single word, prferable alnum(), dot and underscore only. 
Space is ok.
-Fl_Preferences::Node::Node( const char *path )
-{
+Fl_Preferences::Node::Node( const char *path ) {
   if ( path ) path_ = strdup( path ); else path_ = 0;
   child_ = 0; next_ = 0; parent_ = 0;
   entry_ = 0;
@@ -1378,11 +1254,9 @@
   nIndex_ = NIndex_ = 0;
 }
 
-void Fl_Preferences::Node::deleteAllChildren()
-{
+void Fl_Preferences::Node::deleteAllChildren() {
   Node *nx;
-  for ( Node *nd = child_; nd; nd = nx )
-  {
+  for ( Node *nd = child_; nd; nd = nx ) {
     nx = nd->next_;
     delete nd;
   }
@@ -1391,12 +1265,9 @@
   updateIndex();
 }
 
-void Fl_Preferences::Node::deleteAllEntries()
-{
-  if ( entry_ )
-  {
-    for ( int i = 0; i < nEntry_; i++ )
-    {
+void Fl_Preferences::Node::deleteAllEntries() {
+  if ( entry_ ) {
+    for ( int i = 0; i < nEntry_; i++ ) {
       if ( entry_[i].name ) {
        free( entry_[i].name );
        entry_[i].name = 0L;
@@ -1415,8 +1286,7 @@
 }
 
 // delete this and all depending nodes
-Fl_Preferences::Node::~Node()
-{
+Fl_Preferences::Node::~Node() {
   deleteAllChildren();
   deleteAllEntries();
   deleteIndex();
@@ -1429,8 +1299,7 @@
 }
 
 // recursively check if any entry is dirty (was changed after loading a fresh 
prefs file)
-char Fl_Preferences::Node::dirty()
-{
+char Fl_Preferences::Node::dirty() {
   if ( dirty_ ) return 1;
   if ( next_ && next_->dirty() ) return 1;
   if ( child_ && child_->dirty() ) return 1;
@@ -1440,15 +1309,12 @@
 // write this node (recursively from the last neighbor back to this)
 // write all entries
 // write all children
-int Fl_Preferences::Node::write( FILE *f )
-{
+int Fl_Preferences::Node::write( FILE *f ) {
   if ( next_ ) next_->write( f );
   fprintf( f, "\n[%s]\n\n", path_ );
-  for ( int i = 0; i < nEntry_; i++ )
-  {
+  for ( int i = 0; i < nEntry_; i++ ) {
     char *src = entry_[i].value;
-    if ( src )
-    { // hack it into smaller pieces if needed
+    if ( src ) {               // hack it into smaller pieces if needed
       fprintf( f, "%s:", entry_[i].name );
       int cnt;
       for ( cnt = 0; cnt < 60; cnt++ )
@@ -1456,8 +1322,7 @@
       fwrite( src, cnt, 1, f );
       fprintf( f, "\n" );
       src += cnt;
-      for (;*src;)
-      {
+      for (;*src;) {
        for ( cnt = 0; cnt < 80; cnt++ )
          if ( src[cnt]==0 ) break;
         fputc( '+', f );
@@ -1475,8 +1340,7 @@
 }
 
 // set the parent node and create the full path
-void Fl_Preferences::Node::setParent( Node *pn )
-{
+void Fl_Preferences::Node::setParent( Node *pn ) {
   parent_ = pn;
   next_ = pn->child_;
   pn->child_ = this;
@@ -1486,21 +1350,18 @@
 }
 
 // find the corresponding root node
-Fl_Preferences::RootNode *Fl_Preferences::Node::findRoot()
-{
+Fl_Preferences::RootNode *Fl_Preferences::Node::findRoot() {
   Node *n = this;
   do {
     if (n->top_)
       return n->root_;
     n = n->parent();
-
   } while (n);
   return 0L;
 }
 
 // add a child to this node and set its path (try to find it first...)
-Fl_Preferences::Node *Fl_Preferences::Node::addChild( const char *path )
-{
+Fl_Preferences::Node *Fl_Preferences::Node::addChild( const char *path ) {
   sprintf( nameBuffer, "%s/%s", path_, path );
   char *name = strdup( nameBuffer );
   Node *nd = find( name );
@@ -1513,13 +1374,10 @@
 // create and set, or change an entry within this node
 void Fl_Preferences::Node::set( const char *name, const char *value )
 {
-  for ( int i=0; i<nEntry_; i++ )
-  {
-    if ( strcmp( name, entry_[i].name ) == 0 )
-    {
+  for ( int i=0; i<nEntry_; i++ ) {
+    if ( strcmp( name, entry_[i].name ) == 0 ) {
       if ( !value ) return; // annotation
-      if ( strcmp( value, entry_[i].value ) != 0 )
-      {
+      if ( strcmp( value, entry_[i].value ) != 0 ) {
        if ( entry_[i].value )
          free( entry_[i].value );
        entry_[i].value = strdup( value );
@@ -1529,8 +1387,7 @@
       return;
     }
   }
-  if ( NEntry_==nEntry_ )
-  {
+  if ( NEntry_==nEntry_ ) {
     NEntry_ = NEntry_ ? NEntry_*2 : 10;
     entry_ = (Entry*)realloc( entry_, NEntry_ * sizeof(Entry) );
   }
@@ -1542,35 +1399,29 @@
 }
 
 // create or set a value (or annotation) from a single line in the file buffer
-void Fl_Preferences::Node::set( const char *line )
-{
+void Fl_Preferences::Node::set( const char *line ) {
   // hmm. If we assume that we always read this file in the beginning,
   // we can handle the dirty flag 'quick and dirty'
   char dirt = dirty_;
-  if ( line[0]==';' || line[0]==0 || line[0]=='#' )
-  {
+  if ( line[0]==';' || line[0]==0 || line[0]=='#' ) {
     set( line, 0 );
-  }
-  else
-  {
+  } else {
     const char *c = strchr( line, ':' );
-    if ( c )
-    {
+    if ( c ) {
       unsigned int len = c-line+1;
       if ( len >= sizeof( nameBuffer ) )
         len = sizeof( nameBuffer );
       strlcpy( nameBuffer, line, len );
       set( nameBuffer, c+1 );
-    }
-    else
+    } else {
       set( line, "" );
+    }
   }
   dirty_ = dirt;
 }
 
 // add more data to an existing entry
-void Fl_Preferences::Node::add( const char *line )
-{
+void Fl_Preferences::Node::add( const char *line ) {
   if ( lastEntrySet<0 || lastEntrySet>=nEntry_ ) return;
   char *&dst = entry_[ lastEntrySet ].value;
   int a = strlen( dst );
@@ -1581,19 +1432,15 @@
 }
 
 // get the value for a name, returns 0 if no such name
-const char *Fl_Preferences::Node::get( const char *name )
-{
+const char *Fl_Preferences::Node::get( const char *name ) {
   int i = getEntry( name );
   return i>=0 ? entry_[i].value : 0 ;
 }
 
 // find the index of an entry, returns -1 if no such entry
-int Fl_Preferences::Node::getEntry( const char *name )
-{
-  for ( int i=0; i<nEntry_; i++ )
-  {
-    if ( strcmp( name, entry_[i].name ) == 0 )
-    {
+int Fl_Preferences::Node::getEntry( const char *name ) {
+  for ( int i=0; i<nEntry_; i++ ) {
+    if ( strcmp( name, entry_[i].name ) == 0 ) {
       return i;
     }
   }
@@ -1601,8 +1448,7 @@
 }
 
 // remove one entry form this group
-char Fl_Preferences::Node::deleteEntry( const char *name )
-{
+char Fl_Preferences::Node::deleteEntry( const char *name ) {
   int ix = getEntry( name );
   if ( ix == -1 ) return 0;
   memmove( entry_+ix, entry_+ix+1, (nEntry_-ix-1) * sizeof(Entry) );
@@ -1614,18 +1460,14 @@
 // find a group somewhere in the tree starting here
 // - this method will always return a valid node (except for memory allocation 
problems)
 // - if the node was not found, 'find' will create the required branch
-Fl_Preferences::Node *Fl_Preferences::Node::find( const char *path )
-{
+Fl_Preferences::Node *Fl_Preferences::Node::find( const char *path ) {
   int len = strlen( path_ );
-  if ( strncmp( path, path_, len ) == 0 )
-  {
+  if ( strncmp( path, path_, len ) == 0 ) {
     if ( path[ len ] == 0 )
       return this;
-    if ( path[ len ] == '/' )
-    {
+    if ( path[ len ] == '/' ) {
       Node *nd;
-      for ( nd = child_; nd; nd = nd->next_ )
-      {
+      for ( nd = child_; nd; nd = nd->next_ ) {
        Node *nn = nd->find( path );
        if ( nn ) return nn;
       }
@@ -1647,23 +1489,15 @@
 // - if the pathname is "." (current node) return this node
 // - if the pathname is "./" (root node) return the topmost node
 // - if the pathname starts with "./", start the search at the root node 
instead
-Fl_Preferences::Node *Fl_Preferences::Node::search( const char *path, int 
offset )
-{
-
-  if ( offset == 0 )
-  {
-    if ( path[0] == '.' )
-    {
-      if ( path[1] == 0 )
-      {
+Fl_Preferences::Node *Fl_Preferences::Node::search( const char *path, int 
offset ) { 
+  if ( offset == 0 ) {
+    if ( path[0] == '.' ) {
+      if ( path[1] == 0 ) {
        return this; // user was searching for current node
-      }
-      else if ( path[1] == '/' )
-      {
+      } else if ( path[1] == '/' ) {
        Node *nn = this;
        while ( nn->parent() ) nn = nn->parent();
-       if ( path[2]==0 )
-       { // user is searching for root ( "./" )
+       if ( path[2]==0 ) {             // user is searching for root ( "./" )
          return nn;
        }
        return nn->search( path+2, 2 ); // do a relative search on the root node
@@ -1671,18 +1505,14 @@
     }
     offset = strlen( path_ ) + 1;
   }
-
   int len = strlen( path_ );
   if ( len < offset-1 ) return 0;
   len -= offset;
-  if ( ( len <= 0 ) || ( strncmp( path, path_+offset, len ) == 0 ) )
-  {
+  if ( ( len <= 0 ) || ( strncmp( path, path_+offset, len ) == 0 ) ) {
     if ( len > 0 && path[ len ] == 0 )
       return this;
-    if ( len <= 0 || path[ len ] == '/' )
-    {
-      for ( Node *nd = child_; nd; nd = nd->next_ )
-      {
+    if ( len <= 0 || path[ len ] == '/' ) {
+      for ( Node *nd = child_; nd; nd = nd->next_ ) {
        Node *nn = nd->search( path, offset );
        if ( nn ) return nn;
       }
@@ -1693,8 +1523,7 @@
 }
 
 // return the number of child nodes (groups)
-int Fl_Preferences::Node::nChildren()
-{
+int Fl_Preferences::Node::nChildren() {
   if (indexed_) {
     return nIndex_;
   } else {
@@ -1706,10 +1535,8 @@
 }
 
 // return the node name
-const char *Fl_Preferences::Node::name()
-{
-  if ( path_ )
-  {
+const char *Fl_Preferences::Node::name() {
+  if ( path_ ) {
     char *r = strrchr( path_, '/' );
     return r ? r+1 : path_ ;
   } else {
@@ -1718,8 +1545,7 @@
 }
 
 // return the n'th child node's name
-const char *Fl_Preferences::Node::child( int ix )
-{
+const char *Fl_Preferences::Node::child( int ix ) {
   Node *nd = childNode( ix );
   if ( nd )
     return nd->name();
@@ -1728,8 +1554,7 @@
 }
 
 // return the n'th child node
-Fl_Preferences::Node *Fl_Preferences::Node::childNode( int ix )
-{
+Fl_Preferences::Node *Fl_Preferences::Node::childNode( int ix ) {
   createIndex();
   if (indexed_) {
     // usually faster access in correct order, but needing more memory
@@ -1739,8 +1564,7 @@
     int n = nChildren();
     ix = n - ix -1;
     Node *nd;
-    for ( nd = child_; nd; nd = nd->next_ )
-    {
+    for ( nd = child_; nd; nd = nd->next_ ) {
       if ( !ix-- ) break;
       if ( !nd ) break;
     }
@@ -1749,16 +1573,12 @@
 }
 
 // remove myself from the list and delete me (and all children)
-char Fl_Preferences::Node::remove()
-{
+char Fl_Preferences::Node::remove() {
   Node *nd = 0, *np;
-  if ( parent() )
-  {
+  if ( parent() ) {
     nd = parent()->child_; np = 0L;
-    for ( ; nd; np = nd, nd = nd->next_ )
-    {
-      if ( nd == this )
-      {
+    for ( ; nd; np = nd, nd = nd->next_ ) {
+      if ( nd == this ) {
        if ( np )
          np->next_ = nd->next_;
        else
@@ -1807,8 +1627,7 @@
  * \param[in] name every plugin should have a unique name
  */
 Fl_Plugin::Fl_Plugin(const char *klass, const char *name)
-: id(0)
-{
+: id(0) {
 #ifdef FL_PLUGIN_VERBOSE
   printf("Fl_Plugin: creating a plugin, class \"%s\", name \"%s\"\n",
          klass, name);
@@ -1820,8 +1639,7 @@
 /**
  * \brief Clear the plugin and remove it from the database.
  */
-Fl_Plugin::~Fl_Plugin()
-{
+Fl_Plugin::~Fl_Plugin() {
 #ifdef FL_PLUGIN_VERBOSE
   printf("Fl_Plugin: deleting a plugin\n");
 #endif
@@ -1829,13 +1647,11 @@
     Fl_Plugin_Manager::remove(id);
 }
 
-
 /**
  * \brief Manage all plugins belonging to one class.
  */
 Fl_Plugin_Manager::Fl_Plugin_Manager(const char *klass)
-: Fl_Preferences(0, Fl_Preferences::Name("%s/%s", "plugins", klass))
-{
+: Fl_Preferences(0, Fl_Preferences::Name("%s/%s", "plugins", klass)) {
 #ifdef FL_PLUGIN_VERBOSE
   printf("Fl_Plugin: creating a plugin manager for class \"%s\"\n", klass);
 #endif
@@ -1847,8 +1663,7 @@
  * Calling this does not remove the database itself or any plugins. It just
  * removes the reference to the database.
  */
-Fl_Plugin_Manager::~Fl_Plugin_Manager()
-{
+Fl_Plugin_Manager::~Fl_Plugin_Manager() {
 #ifdef FL_PLUGIN_VERBOSE
   printf("Fl_Plugin: deleting a plugin manager\n");
 #endif
@@ -1885,8 +1700,7 @@
 /**
  * \brief Return the address of a plugin by index.
  */
-Fl_Plugin *Fl_Plugin_Manager::plugin(int index)
-{
+Fl_Plugin *Fl_Plugin_Manager::plugin(int index) {
   char buf[34];
   Fl_Plugin *ret = 0;
   Fl_Preferences pin(this, index);
@@ -1901,8 +1715,7 @@
 /**
  * \brief Return the address of a plugin by name.
  */
-Fl_Plugin *Fl_Plugin_Manager::plugin(const char *name)
-{
+Fl_Plugin *Fl_Plugin_Manager::plugin(const char *name) {
   char buf[34];
   Fl_Plugin *ret = 0;
   if (groupExists(name)) {
@@ -1927,8 +1740,7 @@
  * There is no need to call this function explicitly. Every Fl_Plugin 
constructor
  * will call this function at initialization time.
  */
-Fl_Preferences::ID Fl_Plugin_Manager::addPlugin(const char *name, Fl_Plugin 
*plugin)
-{
+Fl_Preferences::ID Fl_Plugin_Manager::addPlugin(const char *name, Fl_Plugin 
*plugin) {
   char buf[34];
 #ifdef FL_PLUGIN_VERBOSE
   printf("Fl_Plugin: adding plugin named \"%s\" at 0x%p\n", name, plugin);
@@ -1945,8 +1757,7 @@
  * There is no need to call this function explicitly. Every Fl_Plugin 
destructor
  * will call this function at destruction time.
  */
-void Fl_Plugin_Manager::removePlugin(Fl_Preferences::ID id)
-{
+void Fl_Plugin_Manager::removePlugin(Fl_Preferences::ID id) {
   Fl_Preferences::remove(id);
 }
 
@@ -1958,8 +1769,7 @@
  * the constructor of all statically initialized Fl_Plugin classes and adds
  * them to the database.
  */
-int Fl_Plugin_Manager::load(const char *filename)
-{
+int Fl_Plugin_Manager::load(const char *filename) {
   // the functions below will autmaticaly load plugins that are defined:
   // Fl_My_Plugin plugin();
 #if defined(WIN32) && !defined(__CYGWIN__)
@@ -1974,8 +1784,7 @@
 /**
  * \brief Use this function to load a whole directory full of modules.
  */
-int Fl_Plugin_Manager::loadAll(const char *filepath, const char *pattern)
-{
+int Fl_Plugin_Manager::loadAll(const char *filepath, const char *pattern) {
   struct dirent **dir;
   int i, n = fl_filename_list(filepath, &dir);
   for (i=0; i<n; i++) {
@@ -1989,7 +1798,6 @@
   return 0;
 }
 
-
 //
 // End of "$Id$".
 //

_______________________________________________
fltk-commit mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-commit

Reply via email to