]> Creatis software - bbtk.git/blob - packages/wx/src/bbwxColourSelector.cxx
*** empty log message ***
[bbtk.git] / packages / wx / src / bbwxColourSelector.cxx
1 /*=========================================================================                                                                               
2   Program:   bbtk
3   Module:    $RCSfile: bbwxColourSelector.cxx,v $
4   Language:  C++
5   Date:      $Date: 2008/10/17 08:18:32 $
6   Version:   $Revision: 1.6 $
7 =========================================================================*/
8
9 /* ---------------------------------------------------------------------
10
11 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
12 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
13 *
14 *  This software is governed by the CeCILL-B license under French law and 
15 *  abiding by the rules of distribution of free software. You can  use, 
16 *  modify and/ or redistribute the software under the terms of the CeCILL-B 
17 *  license as circulated by CEA, CNRS and INRIA at the following URL 
18 *  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
19 *  or in the file LICENSE.txt.
20 *
21 *  As a counterpart to the access to the source code and  rights to copy,
22 *  modify and redistribute granted by the license, users are provided only
23 *  with a limited warranty  and the software's author,  the holder of the
24 *  economic rights,  and the successive licensors  have only  limited
25 *  liability. 
26 *
27 *  The fact that you are presently reading this means that you have had
28 *  knowledge of the CeCILL-B license and that you accept its terms.
29 * ------------------------------------------------------------------------ */                                                                         
30
31 /**
32  * \file
33  * \brief Short description in one line
34  *
35  * Long
36  * description
37  *
38  */
39
40 #ifdef _USE_WXWIDGETS_
41
42 #include "bbwxColourSelector.h"
43 #include "bbwxPackage.h"
44
45 #include <wx/colordlg.h>
46
47 namespace bbwx
48 {
49
50   BBTK_ADD_BLACK_BOX_TO_PACKAGE(wx,ColourSelector);
51   BBTK_BLACK_BOX_IMPLEMENTATION(ColourSelector,bbtk::AtomicBlackBox);
52
53   void ColourSelector::bbUserConstructor()
54   {
55   }
56
57   void ColourSelector::Process()
58    {
59       bbtkDebugMessageInc("Core",9,"ColourSelector::Process() ["
60                           <<bbGetFullName()<<"]"<<std::endl);
61
62       wxColourDialog *colordialog = new wxColourDialog( 0 );
63       int result_colordialog = colordialog->ShowModal();
64
65         // This line is need it by windows // EED
66         colordialog->SetReturnCode( result_colordialog );
67
68       if (colordialog->GetReturnCode()==wxID_OK)
69       {
70          char col[100];
71          wxColour& c = colordialog->GetColourData().GetColour();
72          sprintf(col,"%f %f %f",c.Red()/255.,c.Green()/255.,c.Blue()/255.);
73          bbSetOutputOut( col );
74       } else {
75          bbSetOutputOut("");
76       }
77       bbtkDebugDecTab("Core",9);
78    }
79
80 //  void ColourSelector::CreateWidget()
81 //  {
82 //    mColorDialog = new wxColourSelector( 0 );
83 //    bbSetOutputWidget( mColourSelector );
84 //  }
85
86 }//namespace bbwx
87
88 #endif // _USE_WXWIDGETS_ 
89