Author: matt
Date: 2010-04-11 22:18:38 -0700 (Sun, 11 Apr 2010)
New Revision: 7484
Log:
Added ide generating code to command line version of Fluid.

Removed:
   branches/branch-1.3/fluid/ide_support_ui.cxx
   branches/branch-1.3/fluid/ide_support_ui.fl
   branches/branch-1.3/fluid/ide_support_ui.h
Modified:
   branches/branch-1.3/fltk.db
   branches/branch-1.3/fluid/Makefile
   branches/branch-1.3/fluid/alignment_panel.cxx
   branches/branch-1.3/fluid/alignment_panel.fl
   branches/branch-1.3/fluid/alignment_panel.h
   branches/branch-1.3/fluid/fluid.cxx
   branches/branch-1.3/fluid/ide_maketools.cxx
   branches/branch-1.3/fluid/ide_support.cxx
   branches/branch-1.3/ide/VisualC6/Fluid.dsp
   branches/branch-1.3/ide/Xcode3/FLTK.xcodeproj/project.pbxproj

Modified: branches/branch-1.3/fltk.db
===================================================================
--- branches/branch-1.3/fltk.db 2010-04-11 20:23:38 UTC (rev 7483)
+++ branches/branch-1.3/fltk.db 2010-04-12 05:18:38 UTC (rev 7484)
@@ -1948,12 +1948,6 @@
 xcBuildFileID:3B5132A7C2C4AFC712117A4C
 (filename):fluid/ide_support.cxx
 
-[./targets/apps/9AFEE04E-0E02-4697-B615-91B4D887674E/sources/D51DDFC4-57D2-4FE1-9E73-3CB4B41C72FF]
-
-refUUID:C3D42E72-8BB2-4D9E-A5C7-F845E117C1AB
-xcBuildFileID:B3BA6EDC6CBD904947309845
-(filename):fluid/ide_support_ui.cxx
-
 
[./targets/apps/9AFEE04E-0E02-4697-B615-91B4D887674E/sources/A29B936C-3904-4CFF-BAAD-1454631CA22F]
 
 refUUID:D6D7D90E-247B-40A3-93E9-5751AF5D8A51
@@ -8205,11 +8199,6 @@
 pathAndName:test/valuators.fl
 xcFileID:5717D41C78457FC08C73366E
 
-[./files/C3D42E72-8BB2-4D9E-A5C7-F845E117C1AB]
-
-pathAndName:fluid/ide_support_ui.cxx
-xcFileID:BE8AEC5B94A33E971A141F65
-
 [./files/16547AA2-1A34-443F-9FB5-75A850D3B123]
 
 pathAndName:fluid/ide_maketools.cxx

Modified: branches/branch-1.3/fluid/Makefile
===================================================================
--- branches/branch-1.3/fluid/Makefile  2010-04-11 20:23:38 UTC (rev 7483)
+++ branches/branch-1.3/fluid/Makefile  2010-04-12 05:18:38 UTC (rev 7484)
@@ -42,6 +42,10 @@
        file.cxx \
        fluid.cxx \
        function_panel.cxx \
+       ide_maketools.cxx \
+       ide_support.cxx \
+       ide_visualc.cxx \
+       ide_xcode.cxx \
        template_panel.cxx \
        undo.cxx \
        widget_panel.cxx

Modified: branches/branch-1.3/fluid/alignment_panel.cxx
===================================================================
--- branches/branch-1.3/fluid/alignment_panel.cxx       2010-04-11 20:23:38 UTC 
(rev 7483)
+++ branches/branch-1.3/fluid/alignment_panel.cxx       2010-04-12 05:18:38 UTC 
(rev 7484)
@@ -217,17 +217,6 @@
 redraw_browser();
 }
 
-Fl_Check_Button *show_coredevmenus_button=(Fl_Check_Button *)0;
-
-static void cb_show_coredevmenus_button(Fl_Check_Button*, void*) {
-  show_coredevmenus = show_coredevmenus_button->value();
-fluid_prefs.set("show_coredevmenus", show_coredevmenus);
-if (show_coredevmenus) 
-  dbmanager_item->show(); 
-else 
-  dbmanager_item->hide();
-}
-
 Fl_Spinner *recent_spinner=(Fl_Spinner *)0;
 
 static void cb_recent_spinner(Fl_Spinner*, void*) {
@@ -240,7 +229,7 @@
 }
 
 Fl_Double_Window* make_settings_window() {
-  { settings_window = new Fl_Double_Window(342, 269, "GUI Settings");
+  { settings_window = new Fl_Double_Window(339, 241, "GUI Settings");
     { scheme_choice = new Fl_Choice(116, 10, 115, 25, "Scheme: ");
       scheme_choice->down_box(FL_BORDER_BOX);
       scheme_choice->labelfont(1);
@@ -251,9 +240,9 @@
       scheme_choice->value(s);
       scheme_cb(0, 0);
     } // Fl_Choice* scheme_choice
-    { Fl_Group* o = new Fl_Group(116, 43, 220, 149);
+    { Fl_Group* o = new Fl_Group(116, 43, 220, 126);
       o->labelfont(1);
-      o->align(Fl_Align(FL_ALIGN_LEFT));
+      o->align(Fl_Align(FL_ALIGN_CENTER));
       { Fl_Box* o = new Fl_Box(116, 43, 1, 25, "Options: ");
         o->labelfont(1);
         o->align(Fl_Align(FL_ALIGN_LEFT));
@@ -293,16 +282,9 @@
         fluid_prefs.get("show_comments", show_comments, 1);
         show_comments_button->value(show_comments);
       } // Fl_Check_Button* show_comments_button
-      { show_coredevmenus_button = new Fl_Check_Button(116, 167, 209, 25, 
"Show Core Developer Menus");
-        show_coredevmenus_button->down_box(FL_DOWN_BOX);
-        
show_coredevmenus_button->callback((Fl_Callback*)cb_show_coredevmenus_button);
-        fluid_prefs.get("show_coredevmenus", show_coredevmenus, 0);
-        show_coredevmenus_button->value(show_coredevmenus);
-        if (!show_coredevmenus) dbmanager_item->hide();
-      } // Fl_Check_Button* show_coredevmenus_button
       o->end();
     } // Fl_Group* o
-    { recent_spinner = new Fl_Spinner(115, 199, 40, 25, "# Recent Files: ");
+    { recent_spinner = new Fl_Spinner(115, 173, 40, 25, "# Recent Files: ");
       recent_spinner->labelfont(1);
       recent_spinner->callback((Fl_Callback*)cb_recent_spinner);
       recent_spinner->when(FL_WHEN_CHANGED);
@@ -311,7 +293,7 @@
       recent_spinner->maximum(10);
       recent_spinner->value(c);
     } // Fl_Spinner* recent_spinner
-    { Fl_Button* o = new Fl_Button(266, 231, 64, 25, "Close");
+    { Fl_Button* o = new Fl_Button(266, 205, 64, 25, "Close");
       o->tooltip("Close this dialog.");
       o->callback((Fl_Callback*)cb_Close1);
     } // Fl_Button* o

Modified: branches/branch-1.3/fluid/alignment_panel.fl
===================================================================
--- branches/branch-1.3/fluid/alignment_panel.fl        2010-04-11 20:23:38 UTC 
(rev 7483)
+++ branches/branch-1.3/fluid/alignment_panel.fl        2010-04-12 05:18:38 UTC 
(rev 7484)
@@ -157,10 +157,11 @@
 decl {void scheme_cb(Fl_Choice *, void *);} {public local
 } 
 
-Function {make_settings_window()} {} {
+Function {make_settings_window()} {open
+} {
   Fl_Window settings_window {
     label {GUI Settings} open
-    xywh {393 191 342 269} type Double non_modal visible
+    xywh {393 191 339 241} type Double non_modal visible
   } {
     Fl_Choice scheme_choice {
       label {Scheme: }
@@ -188,8 +189,8 @@
         xywh {10 10 35 25}
       }
     }
-    Fl_Group {} {open
-      xywh {116 43 220 149} labelfont 1 align 4
+    Fl_Group {} {open selected
+      xywh {116 43 220 126} labelfont 1 align 0
     } {
       Fl_Box {} {
         label {Options: }
@@ -238,25 +239,12 @@
         code1 {fluid_prefs.get("show_comments", show_comments, 1);}
         code2 {show_comments_button->value(show_comments);}
       }
-      Fl_Check_Button show_coredevmenus_button {
-        label {Show Core Developer Menus}
-        callback {show_coredevmenus = show_coredevmenus_button->value();
-fluid_prefs.set("show_coredevmenus", show_coredevmenus);
-if (show_coredevmenus) 
-  dbmanager_item->show(); 
-else 
-  dbmanager_item->hide();}
-        xywh {116 167 209 25} down_box DOWN_BOX
-        code1 {fluid_prefs.get("show_coredevmenus", show_coredevmenus, 0);}
-        code2 {show_coredevmenus_button->value(show_coredevmenus);}
-        code3 {if (!show_coredevmenus) dbmanager_item->hide();}
-      }
     }
     Fl_Spinner recent_spinner {
       label {\# Recent Files: }
       callback {fluid_prefs.set("recent_files", recent_spinner->value());
 load_history();}
-      xywh {115 199 40 25} labelfont 1 when 1
+      xywh {115 173 40 25} labelfont 1 when 1
       code0 {int c;}
       code1 {fluid_prefs.get("recent_files", c, 5);}
       code2 {recent_spinner->maximum(10);}
@@ -265,7 +253,7 @@
     Fl_Button {} {
       label Close
       callback {settings_window->hide();}
-      tooltip {Close this dialog.} xywh {266 231 64 25}
+      tooltip {Close this dialog.} xywh {266 205 64 25}
     }
   }
 } 

Modified: branches/branch-1.3/fluid/alignment_panel.h
===================================================================
--- branches/branch-1.3/fluid/alignment_panel.h 2010-04-11 20:23:38 UTC (rev 
7483)
+++ branches/branch-1.3/fluid/alignment_panel.h 2010-04-12 05:18:38 UTC (rev 
7484)
@@ -77,7 +77,6 @@
 extern Fl_Check_Button *openlast_button;
 extern Fl_Check_Button *prevpos_button;
 extern Fl_Check_Button *show_comments_button;
-extern Fl_Check_Button *show_coredevmenus_button;
 #include <FL/Fl_Spinner.H>
 extern Fl_Spinner *recent_spinner;
 Fl_Double_Window* make_settings_window();

Modified: branches/branch-1.3/fluid/fluid.cxx
===================================================================
--- branches/branch-1.3/fluid/fluid.cxx 2010-04-11 20:23:38 UTC (rev 7483)
+++ branches/branch-1.3/fluid/fluid.cxx 2010-04-12 05:18:38 UTC (rev 7484)
@@ -118,7 +118,6 @@
 Fl_Menu_Item *history_item = 0L;
 Fl_Menu_Item *widgetbin_item = 0L;
 Fl_Menu_Item *sourceview_item = 0L;
-Fl_Menu_Item *dbmanager_item = 0L;
 
 ////////////////////////////////////////////////////////////////
 
@@ -1605,12 +1604,6 @@
   if (pi) pi->test("/Users/matt/dev/fltk-1.3.0/fltk.db", 
"/Users/matt/dev/fltk-1.3.0");
 }
 
-void show_dbmanager_cb(Fl_Widget*, void*) {
-  Fl_Plugin_Manager pm("commandline");  
-  Fl_Commandline_Plugin *pi = 
(Fl_Commandline_Plugin*)pm.plugin("FltkDB.fluid.fltk.org");
-  if (pi) pi->show_panel();
-}
-
 ////////////////////////////////////////////////////////////////
 
 extern Fl_Menu_Item New_Menu[];
@@ -1664,7 +1657,6 @@
   {"Show Source Code...",FL_ALT+FL_SHIFT+'s', 
(Fl_Callback*)toggle_sourceview_cb, 0, FL_MENU_DIVIDER},
   {"Pro&ject Settings...",FL_ALT+'p',show_project_cb},
   {"GU&I Settings...",FL_ALT+FL_SHIFT+'p',show_settings_cb},
-  {"Manage &FLTK Database...",0,show_dbmanager_cb},
   {0},
 {"&New", 0, 0, (void *)New_Menu, FL_SUBMENU_POINTER},
 {"&Layout",0,0,0,FL_SUBMENU},
@@ -1820,7 +1812,6 @@
     history_item = (Fl_Menu_Item*)main_menubar->find_item(open_history_cb);
     widgetbin_item = 
(Fl_Menu_Item*)main_menubar->find_item(toggle_widgetbin_cb);
     sourceview_item = 
(Fl_Menu_Item*)main_menubar->find_item((Fl_Callback*)toggle_sourceview_cb);
-    dbmanager_item = 
(Fl_Menu_Item*)main_menubar->find_item((Fl_Callback*)show_dbmanager_cb);
     main_menubar->global();
     fill_in_New_Menu();
     main_window->end();

Modified: branches/branch-1.3/fluid/ide_maketools.cxx
===================================================================
--- branches/branch-1.3/fluid/ide_maketools.cxx 2010-04-11 20:23:38 UTC (rev 
7483)
+++ branches/branch-1.3/fluid/ide_maketools.cxx 2010-04-12 05:18:38 UTC (rev 
7484)
@@ -268,6 +268,10 @@
     fputs("\tfile.cxx \\\n", f);
     fputs("\tfluid.cxx \\\n", f);
     fputs("\tfunction_panel.cxx \\\n", f);
+    fputs("\tide_maketools.cxx \\\n", f);
+    fputs("\tide_support.cxx \\\n", f);
+    fputs("\tide_visualc.cxx \\\n", f);
+    fputs("\tide_xcode.cxx \\\n", f);    
     fputs("\ttemplate_panel.cxx \\\n", f);
     fputs("\tundo.cxx \\\n", f);
     fputs("\twidget_panel.cxx\n", f);
@@ -1729,7 +1733,7 @@
   const char *name() { return "ideMaketools.fluid.fltk.org"; }
   const char *help() { return
     " --dbmake <dbname> <targetpath> : create all IDE files for a 
Makefile/autoconf based project\n"
-    "   WARNING: --dbmake is not yet implemented completely.\n"; }
+    "   WARNING: --dbmake is not yet implemented completely."; }
   int arg(int argc, char **argv, int &i) {
     if (argc>=i+1 && strcmp(argv[i], "--dbxcode3")==0) {
       if (argc>=i+3 && argv[i+1][0]!='-' && argv[i+2][0]!='-') {

Modified: branches/branch-1.3/fluid/ide_support.cxx
===================================================================
--- branches/branch-1.3/fluid/ide_support.cxx   2010-04-11 20:23:38 UTC (rev 
7483)
+++ branches/branch-1.3/fluid/ide_support.cxx   2010-04-12 05:18:38 UTC (rev 
7484)
@@ -103,7 +103,6 @@
  */
 
 #include "ide_support.h"
-#include "ide_support_ui.h"
 
 #include <FL/Fl.H>
 #include <FL/fl_ask.H>
@@ -652,7 +651,6 @@
     fluid_app.add_source(files_db, "fluid/function_panel.cxx");
     fluid_app.add_source(files_db, "fluid/ide_maketools.cxx");
     fluid_app.add_source(files_db, "fluid/ide_support.cxx");
-    fluid_app.add_source(files_db, "fluid/ide_support_ui.cxx");
     fluid_app.add_source(files_db, "fluid/ide_visualc.cxx");
     fluid_app.add_source(files_db, "fluid/ide_xcode.cxx");
     fluid_app.add_source(files_db, "fluid/template_panel.cxx");
@@ -1167,121 +1165,6 @@
   return 0;
 }
 
-class Item_Manager {
-  Fl_Preferences::ID id;
-public:
-  Item_Manager(Fl_Preferences::ID idA) { id = idA; }
-  virtual ~Item_Manager() { }
-  virtual void select(Fl_Tree_Item *) { dbm_wizard->value(dbm_empty); }
-};
-
-class Test_Item_Manager : public Item_Manager {
-  Fl_Preferences::ID id;
-public:
-  Test_Item_Manager(Fl_Preferences::ID idA) : Item_Manager(idA) { }
-  virtual void select(Fl_Tree_Item *ti) { 
-    dbm_wizard->value(dbm_test);
-    dbm_test_name->value(ti->label());
-  }
-};
-
-void tree_item_cb(Fl_Tree *t, void *) {
-  Fl_Tree_Item *ti = t->item_clicked();
-  Item_Manager *im = (Item_Manager*)ti->user_data();
-  if (im) {
-    im->select(ti);
-  }
-}
-
-void ui_load_database(const char *filename)
-{
-  char buf[1024];
-  float v = 0.0f;
-  int i, j;
-  
-  dbmanager_tree->callback((Fl_Callback*)tree_item_cb);
-  
-  // FIXME: must be global, so we can close it
-  Fl_Preferences *db = new Fl_Preferences(filename, "fltk.org", 0);
-
-  // Check if this is a database
-  if (db->entries()==0) {
-    fl_alert("%s\nis not a database", filename);
-    delete db;
-    return;
-  }
-  
-  // Check if the database has the correct format
-  if (!db->entryExists("databaseFormat")) {
-    fl_alert("%s\nis not a Fluid database", filename);
-    delete db;
-    return;
-  }
-  db->get("databaseFormat", buf, "", 1024);
-  if (strcmp(buf, "FLUID_IDE_DB")!=0) {
-    fl_alert("%s\nis not a Fluid IDE database", filename);
-    delete db;
-    return;
-  }
-  db->get("databaseVersion", buf, "", 1024);
-  sscanf(buf, "%f", &v);
-  if (v>1.0f) {
-    fl_alert("The Fluid IDE database\n%s\nversion %f is not suported.", 
filename, v);
-    delete db;
-    return;
-  }
-  
-  // set the dialog label to the project name
-  char *name; db->get("projectName", name, "unnamed");
-  char *vers; db->get("projectVersion", vers, "0.1");
-  sprintf(buf, "%s V%s", name, vers);
-  dbmanager_window->label(buf);
-  free(vers); free(name);
-  
-  Fl_Preferences targetsDB(db, "targets");
-  Fl_Preferences filesDB(db, "files");
-  Fl_Tree_Item *ti;
-  
-  // load all tests
-  ti = dbmanager_tree->add("Applications");
-  ti->user_data(new Item_Manager(0L));
-  
-  // load all tests
-  ti = dbmanager_tree->add("Libraries & Frameworks");
-  ti->user_data(new Item_Manager(0L));
-  
-  // load all tests
-  ti = dbmanager_tree->add("Test Applications");
-  ti->user_data(new Item_Manager(0L));
-  Fl_Preferences testsDB(targetsDB, "tests");
-  for (i=0; i<testsDB.groups(); i++) {
-    Fl_Preferences testDB(testsDB, i);
-    testDB.get("name", buf, "DB-Error", 1024);
-    Fl_Tree_Item *tt = dbmanager_tree->add(ti, buf); tt->close();
-    tt->user_data(new Test_Item_Manager(testDB.id()));
-    
-    if (testDB.groupExists("sources")) {
-      Fl_Tree_Item *ts = dbmanager_tree->add(tt, "Sources"); ts->close();
-      Fl_Preferences srcsDB(testDB, "sources");
-      for (j=0; j<srcsDB.groups(); j++) {
-        Fl_Preferences srcDB(srcsDB, j);
-        srcDB.get("refUUID", buf, "DBERROR", 1024);
-        Fl_File_Prefs fileDB(filesDB, buf);
-        /* Fl_Tree_Item *tb = */ dbmanager_tree->add(ts, fileDB.fullName());
-      }
-    }
-    
-    //ts = dbmanager_tree->add(tt, "Dependencies");
-    //ts = dbmanager_tree->add(tt, "Libraries");
-    //ts = dbmanager_tree->add(tt, "Externals");
-  }
-  
-
-  dbmanager_tree->redraw();
-  delete db;
-}
-
-
 // Make this module into a plugin
 
 extern int exit_early;
@@ -1313,10 +1196,6 @@
     return 0;
   }
   void show_panel() {
-    if (!dbmanager_window)
-      make_dbmanager_window();
-    dbmanager_window->label("IDE Database Manager");
-    dbmanager_window->show();
   }
 };
 

Deleted: branches/branch-1.3/fluid/ide_support_ui.cxx

Deleted: branches/branch-1.3/fluid/ide_support_ui.fl

Deleted: branches/branch-1.3/fluid/ide_support_ui.h

Modified: branches/branch-1.3/ide/VisualC6/Fluid.dsp
===================================================================
--- branches/branch-1.3/ide/VisualC6/Fluid.dsp  2010-04-11 20:23:38 UTC (rev 
7483)
+++ branches/branch-1.3/ide/VisualC6/Fluid.dsp  2010-04-12 05:18:38 UTC (rev 
7484)
@@ -163,10 +163,6 @@
 # End Source File
 # Begin Source File
 
-SOURCE=..\..\fluid\ide_support_ui.cxx
-# End Source File
-# Begin Source File
-
 SOURCE=..\..\fluid\ide_visualc.cxx
 # End Source File
 # Begin Source File

Modified: branches/branch-1.3/ide/Xcode3/FLTK.xcodeproj/project.pbxproj
===================================================================
--- branches/branch-1.3/ide/Xcode3/FLTK.xcodeproj/project.pbxproj       
2010-04-11 20:23:38 UTC (rev 7483)
+++ branches/branch-1.3/ide/Xcode3/FLTK.xcodeproj/project.pbxproj       
2010-04-12 05:18:38 UTC (rev 7484)
@@ -408,7 +408,6 @@
                B220C8BACFB1FF8B576683AE /* fltk.framework in Frameworks */ = 
{isa = PBXBuildFile; fileRef = F459EEE32AC6EE0087583065 /* fltk.framework */; };
                B33439F4D21CCF663D38D36F /* fltk.framework in CopyFiles */ = 
{isa = PBXBuildFile; fileRef = F459EEE32AC6EE0087583065 /* fltk.framework */; };
                B3AB7CB3BB4674496EE23A9D /* fltk.framework in CopyFiles */ = 
{isa = PBXBuildFile; fileRef = F459EEE32AC6EE0087583065 /* fltk.framework */; };
-               B3BA6EDC6CBD904947309845 /* ide_support_ui.cxx in Sources */ = 
{isa = PBXBuildFile; fileRef = BE8AEC5B94A33E971A141F65 /* ide_support_ui.cxx 
*/; };
                B3F7E78259D54982CE9D0636 /* fltk.framework in CopyFiles */ = 
{isa = PBXBuildFile; fileRef = F459EEE32AC6EE0087583065 /* fltk.framework */; };
                B433FC5EB573FF9875CBF3A0 /* fl_dnd.cxx in Sources */ = {isa = 
PBXBuildFile; fileRef = 4BC7AF98309EC04D477C75BF /* fl_dnd.cxx */; };
                B5866D0045327FD5656DE0D5 /* flstring.c in Sources */ = {isa = 
PBXBuildFile; fileRef = 1DF43319523953BD4B153A07 /* flstring.c */; };
@@ -3932,7 +3931,6 @@
                BE710079ACC4C7D3FB2E72D6 /* Fl_Box.cxx */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; 
name = Fl_Box.cxx; path = ../../src/Fl_Box.cxx; sourceTree = SOURCE_ROOT; };
                BE7E4C70257863B05F3BEA7E /* Fl_Wizard.cxx */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; 
name = Fl_Wizard.cxx; path = ../../src/Fl_Wizard.cxx; sourceTree = SOURCE_ROOT; 
};
                BE840FE9120DF2BDF7C0D8B1 /* mandelbrot_ui.fl */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.fluid; name 
= mandelbrot_ui.fl; path = ../../test/mandelbrot_ui.fl; sourceTree = 
SOURCE_ROOT; };
-               BE8AEC5B94A33E971A141F65 /* ide_support_ui.cxx */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; 
name = ide_support_ui.cxx; path = ../../fluid/ide_support_ui.cxx; sourceTree = 
SOURCE_ROOT; };
                BF24156FEE87C9CF2DF5D6DF /* pngtrans.c */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = 
pngtrans.c; path = ../../png/pngtrans.c; sourceTree = SOURCE_ROOT; };
                BF53F3C7BD0B54B51FEDD0FA /* jquant1.c */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = 
jquant1.c; path = ../../jpeg/jquant1.c; sourceTree = SOURCE_ROOT; };
                C08A8ABFE2A8C2921AC63025 /* jcsample.c */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = 
jcsample.c; path = ../../jpeg/jcsample.c; sourceTree = SOURCE_ROOT; };
@@ -5475,7 +5473,6 @@
                                1C0E3777F229938969F8E0E7 /* function_panel.cxx 
*/,
                                B65FCD2B8489E2BBAA3F695A /* ide_maketools.cxx 
*/,
                                77759BD79A674B0703F21C3E /* ide_support.cxx */,
-                               BE8AEC5B94A33E971A141F65 /* ide_support_ui.cxx 
*/,
                                B50524F41B3A568F8AD761C9 /* ide_visualc.cxx */,
                                B78D76B5AC3045B586173DC9 /* ide_xcode.cxx */,
                                82D70F7B9460C9797FF03089 /* template_panel.cxx 
*/,
@@ -8297,7 +8294,6 @@
                                CCA89C0B6F35BD769098B0B6 /* function_panel.cxx 
in Sources */,
                                C9C84B2983DC793B141DDC70 /* ide_maketools.cxx 
in Sources */,
                                3B5132A7C2C4AFC712117A4C /* ide_support.cxx in 
Sources */,
-                               B3BA6EDC6CBD904947309845 /* ide_support_ui.cxx 
in Sources */,
                                3734BD3A2D1490F4EC62ACAA /* ide_visualc.cxx in 
Sources */,
                                92BAD1B264D06B999FABE825 /* ide_xcode.cxx in 
Sources */,
                                E5AD089B2DB919A31955C459 /* template_panel.cxx 
in Sources */,

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

Reply via email to