~ubuntu-branches/ubuntu/jaunty/cmake/jaunty-security

« back to all changes in this revision

Viewing changes to Source/FLTKDialog/FLTKDialog.cxx

  • Committer: Bazaar Package Importer
  • Author(s): A. Maitland Bottoms
  • Date: 2006-06-18 16:34:11 UTC
  • mfrom: (1.4.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060618163411-pi234s3v6jwlcmof
Tags: 2.4.2-1
* New upstream release (Closes: #338324)
* Put cmake .vim files into /usr/share/vim/addons/plugin/
  where they can be used. (Closes: #366663)
* Install cmake-mode.el so it can be used. (Closes: #366664)
* Ensure cmake FindKDE locates KDE libraries on Debian
  based distributions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*=========================================================================
 
2
 
 
3
  Program:   Insight Segmentation & Registration Toolkit
 
4
  Module:    $RCSfile: FLTKDialog.cxx,v $
 
5
  Language:  C++
 
6
  Date:      $Date: 2005/09/23 21:47:32 $
 
7
  Version:   $Revision: 1.7 $
 
8
 
 
9
  Copyright (c) 2002 Insight Consortium. All rights reserved.
 
10
  See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
 
11
 
 
12
     This software is distributed WITHOUT ANY WARRANTY; without even 
 
13
     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
 
14
     PURPOSE.  See the above copyright notices for more information.
 
15
 
 
16
=========================================================================*/
 
17
 
 
18
#include "CMakeSetupGUIImplementation.h"
 
19
#include "FL/Fl.H"
 
20
#include "FL/fl_ask.H"
 
21
 
 
22
int main(int argc, char * argv[] ) 
 
23
{
 
24
 
 
25
  fl_message_font(FL_HELVETICA,11);
 
26
 
 
27
  CMakeSetupGUIImplementation * gui 
 
28
       = new CMakeSetupGUIImplementation;
 
29
 
 
30
  gui->SetPathToExecutable( argv[0] );
 
31
  gui->Show();
 
32
  gui->LoadRecentDirectories();
 
33
  gui->LoadCacheFromDiskToGUI();
 
34
 
 
35
  Fl::run();
 
36
 
 
37
  delete gui;
 
38
  
 
39
  return 0;
 
40
  
 
41
}