]> Creatis software - bbtk.git/blob - packages/wx/src/bbwxColourSelector.cxx
.
[bbtk.git] / packages / wx / src / bbwxColourSelector.cxx
1 /*=========================================================================                                                                               
2   Program:   bbtk
3   Module:    $RCSfile: bbwxColourSelector.cxx,v $
4   Language:  C++
5   Date:      $Date: 2009/05/15 14:58:03 $
6   Version:   $Revision: 1.7 $
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         //-----------------------------------------------------------------     
54         void ColourSelector::bbUserSetDefaultValues()
55         {
56         }
57         
58         //-----------------------------------------------------------------     
59         void ColourSelector::bbUserInitializeProcessing()
60         {
61         }
62         
63         //-----------------------------------------------------------------     
64         void ColourSelector::bbUserFinalizeProcessing()
65         {
66         }
67         
68         //-----------------------------------------------------------------     
69   void ColourSelector::Process()
70    {
71       bbtkDebugMessageInc("Core",9,"ColourSelector::Process() ["
72                           <<bbGetFullName()<<"]"<<std::endl);
73
74       wxColourDialog *colordialog = new wxColourDialog( 0 );
75       int result_colordialog = colordialog->ShowModal();
76
77         // This line is need it by windows // EED
78         colordialog->SetReturnCode( result_colordialog );
79
80       if (colordialog->GetReturnCode()==wxID_OK)
81       {
82          char col[100];
83          wxColour& c = colordialog->GetColourData().GetColour();
84          sprintf(col,"%f %f %f",c.Red()/255.,c.Green()/255.,c.Blue()/255.);
85          bbSetOutputOut( col );
86       } else {
87          bbSetOutputOut("");
88       }
89       bbtkDebugDecTab("Core",9);
90    }
91
92 //  void ColourSelector::CreateWidget()
93 //  {
94 //    mColorDialog = new wxColourSelector( 0 );
95 //    bbSetOutputWidget( mColourSelector );
96 //  }
97
98 }//namespace bbwx
99
100 #endif // _USE_WXWIDGETS_ 
101