]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - tools/src/tools/configtool/standalone/wxwin/shortdescrwin.cpp
Cleanup CVS ipmorted branch
[karo-tx-redboot.git] / tools / src / tools / configtool / standalone / wxwin / shortdescrwin.cpp
1 //####COPYRIGHTBEGIN####
2 //
3 // ----------------------------------------------------------------------------
4 // Copyright (C) 1998, 1999, 2000 Red Hat, Inc.
5 //
6 // This program is part of the eCos host tools.
7 //
8 // This program is free software; you can redistribute it and/or modify it
9 // under the terms of the GNU General Public License as published by the Free
10 // Software Foundation; either version 2 of the License, or (at your option)
11 // any later version.
12 //
13 // This program is distributed in the hope that it will be useful, but WITHOUT
14 // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 // FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
16 // more details.
17 //
18 // You should have received a copy of the GNU General Public License along with
19 // this program; if not, write to the Free Software Foundation, Inc.,
20 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
21 //
22 // ----------------------------------------------------------------------------
23 //
24 //####COPYRIGHTEND####
25 // shortdescrwin.cpp :
26 //
27 //===========================================================================
28 //#####DESCRIPTIONBEGIN####
29 //
30 // Author(s):   julians
31 // Contact(s):  julians
32 // Date:        2000/10/02
33 // Version:     $Id: shortdescrwin.cpp,v 1.4 2001/05/16 16:08:24 julians Exp $
34 // Purpose:
35 // Description: Implementation file for ecShortDescriptionWindow
36 // Requires:
37 // Provides:
38 // See also:
39 // Known bugs:
40 // Usage:
41 //
42 //####DESCRIPTIONEND####
43 //
44 //===========================================================================
45
46 // ============================================================================
47 // declarations
48 // ============================================================================
49
50 // ----------------------------------------------------------------------------
51 // headers
52 // ----------------------------------------------------------------------------
53 #ifdef __GNUG__
54     #pragma implementation "shortdescrwin.h"
55 #endif
56
57 // Includes other headers for precompiled compilation
58 #include "ecpch.h"
59
60 #ifdef __BORLANDC__
61     #pragma hdrstop
62 #endif
63
64 #include "configtool.h"
65 #include "shortdescrwin.h"
66
67 /*
68  * ecShortDescriptionWindow
69  */
70
71 IMPLEMENT_CLASS(ecShortDescriptionWindow, wxTextCtrl)
72
73 BEGIN_EVENT_TABLE(ecShortDescriptionWindow, wxTextCtrl)
74     EVT_MOUSE_EVENTS(ecShortDescriptionWindow::OnMouseEvent)
75 END_EVENT_TABLE()
76
77 ecShortDescriptionWindow::ecShortDescriptionWindow(wxWindow* parent, wxWindowID id, const wxPoint& pt,
78         const wxSize& sz, long style):
79         wxTextCtrl(parent, id, wxEmptyString, pt, sz, style)
80 {
81 /*
82 #ifdef __WXGTK__
83     SetThemeEnabled(FALSE);
84 #endif
85 */
86     
87     if (!wxGetApp().GetSettings().GetWindowSettings().GetUseDefaults() &&
88          wxGetApp().GetSettings().GetWindowSettings().GetFont(wxT("Short Description")).Ok())
89     {
90         SetFont(wxGetApp().GetSettings().GetWindowSettings().GetFont(wxT("Short Description")));
91     }
92
93     m_propertiesMenu = new wxMenu;
94
95     m_propertiesMenu->Append(ecID_WHATS_THIS, _("&What's This?"));
96     m_propertiesMenu->AppendSeparator();
97     m_propertiesMenu->Append(wxID_COPY, _("&Copy"));
98
99     //SetValue(_("This is a short description, to give you helpful remarks about the selected item."));
100 }
101
102 ecShortDescriptionWindow::~ecShortDescriptionWindow()
103 {
104     delete m_propertiesMenu;
105 }
106
107 void ecShortDescriptionWindow::OnMouseEvent(wxMouseEvent& event)
108 {
109     if (event.RightDown())
110     {
111         PopupMenu(GetPropertiesMenu(), event.GetX(), event.GetY());
112     }
113     else
114     {
115         event.Skip();
116     }
117 }
118