gehe zur Dokumentation dieser Datei00001
00026
00027
00028
00029
00030
00031
00032
00033 #include <iostream>
00034
00035
00036 #include "wx/wxprec.h"
00037 #include "Defs.h"
00038
00039
00040 #ifdef __BORLANDC__
00041 #pragma hdrstop
00042 #endif
00043
00044 #ifndef WX_PRECOMP
00045 #include "wx/wx.h"
00046 #endif
00047
00048 #include "wx/tokenzr.h"
00049 #include "MutTextBox.h"
00050 #include "MutFrame.h"
00051
00052 wxString TextBoxTitle[] =
00053 { _("Current keys"), _("Tone system"), _("Actions") };
00054
00055 BEGIN_EVENT_TABLE(MutTextBox, wxListBox)
00056 EVT_CLOSE(MutTextBox::OnClose)
00057
00058
00059
00060
00061 END_EVENT_TABLE()
00062
00063 wxString ListInit[1] = { _("<init>") };
00064
00065 MutTextBox::MutTextBox(WinKind k,
00066 WinAttr *a,
00067 wxWindow* parent,
00068 wxWindowID id,
00069
00070 const wxPoint& pos,
00071 const wxSize& size):
00072 wxListBox(parent, id, pos, size, 1, ListInit),
00073 winKind(k),
00074 winAttr(a)
00075 {
00076 DEBUGLOG (other, _T(""));
00077
00078
00079
00080
00081 ColorBox = -1;
00082 }
00083
00084
00085 void MutTextBox::OnClose(wxCloseEvent& event)
00086
00087 {
00088 wxASSERT(WK_KEY <= winKind && winKind < WK_NULL);
00089 DEBUGLOG (other, _T("winKind: %d"), winKind);
00090
00091 TextBoxWanted[curBox][winKind] = false;
00092
00093 Destroy();
00094 }
00095
00096 void MutTextBox::NewText(char *s, bool newTitle)
00097 {
00098 wxASSERT(WK_KEY <= winKind && winKind < WK_NULL);
00099 DEBUGLOG (other, _T(""));
00100
00101 Clear();
00102 char s1[2000];
00103 int i = 0, j = 0;
00104
00105 while ( s[i] ) {
00106 if ( s[i] == '\r' || s[i] == '\n' ) {
00107 s1[j] = 0;
00108
00109 if ( j )
00110 Append(wxString(muT(s1)));
00111
00112 j = 0;
00113
00114 i++;
00115 } else
00116 s1[j++] = s[i++];
00117 }
00118
00119 s1[j] = 0;
00120
00121 if ( j )
00122 Append(wxString(muT(s1)));
00123
00124
00125 if ( newTitle ) {
00126
00127 std::cerr << "Not implemented: MutTextBox::NewText(...,newTitle=true);" << std::endl;
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142 }
00143
00144
00145 if ( winKind == WK_ACT )
00146 SetSelection(GetCount()-1);
00147
00148
00149
00150
00151
00152
00153
00154 }
00155
00156 void MutTextBox::NewText(wxString s, bool newTitle)
00157 {
00158 DEBUGLOG (other, _T("s=%s; newTitle=%d; winKind=%d"),s.c_str(),newTitle,winKind);
00159 wxASSERT(WK_KEY <= winKind && winKind < WK_NULL);
00160
00161 Clear();
00162
00163
00164
00165 wxStringTokenizer tokenizer(s,_T("\r\n"));
00166
00167 while (tokenizer.HasMoreTokens())
00168 Append(tokenizer.GetNextToken());
00169
00170
00171 if ( newTitle ) {
00172 std::cerr << "Not implemented: MutTextBox::NewText(...,newTitle=true);" << std::endl;
00173
00174
00175
00176
00177
00178
00179
00180
00181
00182
00183
00184
00185
00186
00187 }
00188
00189
00190 if ( winKind == WK_ACT )
00191 SetSelection(GetCount()-1);
00192
00193
00194
00195
00196
00197
00198
00199 }
00200
00201
00202
00203
00204
00205
00206
00207
00208
00209
00210
00211
00212
00213
00214
00215
00216
00217
00218
00219
00220
00221
00222
00223
00224
00225
00226
00227
00228
00229
00230
00231
00232
00233
00234
00235
00236
00237
00238
00239
00240
00241
00242