1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
|
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: baside2.hxx,v $
*
* $Revision: 1.21 $
*
* last change: $Author: rt $ $Date: 2005-09-07 19:56:19 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
************************************************************************/
#ifndef _BASIDE2_HXX
#define _BASIDE2_HXX
#ifndef _SVHEADER_HXX
#include <svheader.hxx>
#endif
#include <bastypes.hxx>
#include <bastype3.hxx>
#include <basidesh.hxx>
#include <basic/hilight.hxx>
class ExtTextEngine;
class ExtTextView;
class SvxSearchItem;
#ifndef _SVTABBX_HXX //autogen
#include <svtools/svtabbx.hxx>
#endif
#ifndef _HEADBAR_HXX
#include <svtools/headbar.hxx>
#endif
#ifndef _SV_BUTTON_HXX //autogen
#include <vcl/button.hxx>
#endif
#ifndef _SB_SBMOD_HXX //autogen
#include <basic/sbmod.hxx>
#endif
#ifndef _SV_SPLIT_HXX //autogen
#include <vcl/split.hxx>
#endif
#ifndef _SFXLSTNER_HXX
#include "svtools/lstner.hxx"
#endif
#ifndef INCLUDED_SVTOOLS_COLORCFG_HXX
#include <svtools/colorcfg.hxx>
#endif
#include <sfx2/progress.hxx>
DBG_NAMEEX( ModulWindow );
#define MARKER_NOMARKER 0xFFFF
// #108672 Helper functions to get/set text in TextEngine
// using the stream interface (get/setText() only supports
// tools Strings limited to 64K).
::rtl::OUString getTextEngineText( ExtTextEngine* pEngine );
void setTextEngineText( ExtTextEngine* pEngine, const ::rtl::OUString aStr );
class ProgressInfo : public SfxProgress
{
private:
ULONG nCurState;
public:
inline ProgressInfo( SfxObjectShell* pObjSh, const String& rText, ULONG nRange );
// inline void StartProgress( const String& rName, ULONG nStates );
// inline void EndProgress();
inline void StepProgress();
};
inline ProgressInfo::ProgressInfo( SfxObjectShell* pObjSh, const String& rText, ULONG nRange )
: SfxProgress( pObjSh, rText, nRange )
{
nCurState = 0;
}
// inline void ProgressInfo::StartProgress( const String& rName, ULONG nStates )
// {
// nCurState = 0;
// if ( pStbMgr )
// pStbMgr->StartProgressMode( rName, nStates );
// }
// inline void ProgressInfo::EndProgress()
// {
// if ( pStbMgr )
// pStbMgr->EndProgressMode();
//}
inline void ProgressInfo::StepProgress()
{
SetState( ++nCurState );
}
namespace svt {
class SourceViewConfig;
}
class EditorWindow : public Window, public SfxListener
{
private:
ExtTextView* pEditView;
ExtTextEngine* pEditEngine;
svt::SourceViewConfig* pSourceViewConfig;
long nCurTextWidth;
SyntaxHighlighter aHighlighter;
Timer aSyntaxIdleTimer;
Table aSyntaxLineTable;
DECL_LINK( SyntaxTimerHdl, Timer * );
ProgressInfo* pProgress;
ModulWindow* pModulWindow;
Timer aHelpAgentTimer;
DECL_LINK( HelpAgentTimerHdl, Timer * );
virtual void DataChanged(DataChangedEvent const & rDCEvt);
virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint );
void ImpDoHighlight( ULONG nLineOff );
void ImplSetFont();
BOOL bHighlightning;
BOOL bDoSyntaxHighlight;
BOOL bDelayHighlight;
virtual
::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer >
GetComponentInterface(BOOL bCreate = TRUE);
protected:
virtual void Paint( const Rectangle& );
virtual void Resize();
virtual void KeyInput( const KeyEvent& rKeyEvt );
virtual void MouseMove( const MouseEvent& rMEvt );
virtual void MouseButtonDown( const MouseEvent& rMEvt );
virtual void MouseButtonUp( const MouseEvent& rMEvt );
virtual void Command( const CommandEvent& rCEvt );
//virtual BOOL Drop( const DropEvent& rEvt );
//virtual BOOL QueryDrop( DropEvent& rEvt );
virtual void LoseFocus();
virtual void RequestHelp( const HelpEvent& rHEvt );
void DoSyntaxHighlight( ULONG nPara );
String GetWordAtCursor();
BOOL ImpCanModify();
public:
EditorWindow( Window* pParent );
~EditorWindow();
ExtTextEngine* GetEditEngine() const { return (ExtTextEngine*)pEditEngine; }
ExtTextView* GetEditView() const { return pEditView; }
ProgressInfo* GetProgress() const { return pProgress; }
void CreateProgress( const String& rText, ULONG nRange );
void DestroyProgress();
void ParagraphInsertedDeleted( ULONG nNewPara, BOOL bInserted );
void DoDelayedSyntaxHighlight( ULONG nPara );
void CreateEditEngine();
void SetScrollBarRanges();
void InitScrollBars();
void SetModulWindow( ModulWindow* pWin )
{ pModulWindow = pWin; }
void ForceSyntaxTimeout();
BOOL SetSourceInBasic( BOOL bQuiet = TRUE );
BOOL CanModify() { return ImpCanModify(); }
};
class BreakPointWindow : public Window
{
private:
long nCurYOffset;
USHORT nMarkerPos;
BreakPointList aBreakPointList;
ModulWindow* pModulWindow;
BOOL bErrorMarker;
bool m_bHighContrastMode;
virtual void DataChanged(DataChangedEvent const & rDCEvt);
void setBackgroundColor(Color aColor);
protected:
virtual void Paint( const Rectangle& );
virtual void Resize();
BreakPoint* FindBreakPoint( const Point& rMousePos );
void ShowMarker( BOOL bShow );
virtual void MouseButtonDown( const MouseEvent& rMEvt );
virtual void Command( const CommandEvent& rCEvt );
BOOL SyncYOffset();
public:
BreakPointWindow( Window* pParent );
~BreakPointWindow();
void SetModulWindow( ModulWindow* pWin )
{ pModulWindow = pWin; }
void SetMarkerPos( USHORT nLine, BOOL bErrorMarker = FALSE );
void Scroll( long nHorzScroll, long nVertScroll );
long& GetCurYOffset() { return nCurYOffset; }
BreakPointList& GetBreakPoints() { return aBreakPointList; }
};
class WatchTreeListBox : public SvHeaderTabListBox
{
String aEditingRes;
protected:
virtual BOOL EditingEntry( SvLBoxEntry* pEntry, Selection& rSel );
virtual BOOL EditedEntry( SvLBoxEntry* pEntry, const String& rNewText );
BOOL ImplBasicEntryEdited( SvLBoxEntry* pEntry, const String& rResult );
SbxBase* ImplGetSBXForEntry( SvLBoxEntry* pEntry, bool& rbArrayElement );
// virtual DragDropMode NotifyBeginDrag( SvLBoxEntry* );
// virtual BOOL NotifyQueryDrop( SvLBoxEntry* );
// virtual BOOL NotifyMoving( SvLBoxEntry* pTarget, SvLBoxEntry* pEntry,
// SvLBoxEntry*& rpNewParent, ULONG& rNewChildPos );
// virtual BOOL NotifyCopying( SvLBoxEntry* pTarget, SvLBoxEntry* pEntry,
// SvLBoxEntry*& rpNewParent, ULONG& rNewChildPos );
// BOOL NotifyCopyingMoving( SvLBoxEntry* pTarget, SvLBoxEntry* pEntry,
// SvLBoxEntry*& rpNewParent, ULONG& rNewChildPos, BOOL bMove );
public:
WatchTreeListBox( Window* pParent, WinBits nWinBits );
~WatchTreeListBox();
void RequestingChilds( SvLBoxEntry * pParent );
void UpdateWatches( bool bBasicStopped = false );
virtual void SetTabs();
};
class WatchWindow : public BasicDockingWindow
{
private:
String aWatchStr;
ExtendedEdit aXEdit;
ImageButton aRemoveWatchButton;
WatchTreeListBox aTreeListBox;
HeaderBar aHeaderBar;
protected:
virtual void Resize();
virtual void Paint( const Rectangle& rRect );
DECL_LINK( ButtonHdl, ImageButton * );
DECL_LINK( TreeListHdl, SvTreeListBox * );
DECL_LINK( implEndDragHdl, HeaderBar * );
DECL_LINK( EditAccHdl, Accelerator * );
public:
WatchWindow( Window* pParent );
~WatchWindow();
void AddWatch( const String& rVName );
BOOL RemoveSelectedWatch();
void UpdateWatches( bool bBasicStopped = false );
WatchTreeListBox& GetWatchTreeListBox() { return aTreeListBox; }
};
class StackWindow : public BasicDockingWindow
{
private:
SvTreeListBox aTreeListBox;
ImageButton aGotoCallButton;
String aStackStr;
protected:
virtual void Resize();
virtual void Paint( const Rectangle& rRect );
DECL_LINK( ButtonHdl, ImageButton * );
public:
StackWindow( Window* pParent );
~StackWindow();
void UpdateCalls();
};
class ComplexEditorWindow : public Window
{
private:
BreakPointWindow aBrkWindow;
EditorWindow aEdtWindow;
ScrollBar aEWVScrollBar;
virtual void DataChanged(DataChangedEvent const & rDCEvt);
protected:
virtual void Resize();
DECL_LINK( ScrollHdl, ScrollBar * );
public:
ComplexEditorWindow( ModulWindow* pParent );
BreakPointWindow& GetBrkWindow() { return aBrkWindow; }
EditorWindow& GetEdtWindow() { return aEdtWindow; }
ScrollBar& GetEWVScrollBar() { return aEWVScrollBar; }
};
#define SYNTAX_COLOR_MAX 5
class ModulWindow: public IDEBaseWindow
{
friend class BasicIDEShell;
private:
StarBASICRef xBasic;
short nValid;
ComplexEditorWindow aXEditorWindow;
BasicStatus aStatus;
SbModuleRef xModule;
ModulWindowLayout* pLayout;
String aCurPath;
::rtl::OUString m_aModule;
DECL_LINK( BasicErrorHdl, StarBASIC * );
long BasicBreakHdl( StarBASIC* pBasic );
void CheckCompileBasic();
BOOL BasicExecute();
void GoOnTop();
void AssertValidEditEngine();
protected:
virtual void Resize();
virtual void GetFocus();
virtual void Paint( const Rectangle& );
virtual void Deactivating();
virtual void DoInit();
virtual void DoScroll( ScrollBar* pCurScrollBar );
public:
TYPEINFO();
ModulWindow( ModulWindowLayout* pParent, SfxObjectShell* pShell, String aLibName,
String aName, ::rtl::OUString& aModule );
~ModulWindow();
virtual void ExecuteCommand( SfxRequest& rReq );
virtual void GetState( SfxItemSet& );
virtual void StoreData();
virtual void UpdateData();
virtual BOOL CanClose();
virtual void PrintData( Printer* pPrinter );
virtual String GetTitle();
virtual BasicEntryDescriptor CreateEntryDescriptor();
virtual BOOL AllowUndo();
virtual void SetReadOnly( BOOL bReadOnly );
virtual BOOL IsReadOnly();
StarBASIC* GetBasic() { return xBasic; }
SbModule* GetSbModule() { return xModule; }
void SetSbModule( SbModule* pModule ) { xModule = pModule; }
String GetSbModuleName();
BOOL CompileBasic();
BOOL BasicRun();
BOOL BasicStepOver();
BOOL BasicStepInto();
BOOL BasicStepOut();
void BasicStop();
BOOL BasicToggleBreakPoint();
void BasicToggleBreakPointEnabled();
void ManageBreakPoints();
void UpdateBreakPoint( const BreakPoint& rBrk );
void BasicAddWatch();
void BasicRemoveWatch();
BOOL LoadBasic();
BOOL SaveBasicSource();
void EditMacro( const String& rMacroName );
// void InsertFromObjectCatalog( ObjectCatalog* pObjDlg );
BOOL ToggleBreakPoint( ULONG nLine );
BOOL RenameModule( const String& rNewName );
BasicStatus& GetBasicStatus() { return aStatus; }
virtual BOOL IsModified();
virtual BOOL IsPasteAllowed();
void FrameWindowMoved();
void ShowCursor( BOOL bOn );
virtual USHORT GetSearchOptions();
USHORT StartSearchAndReplace( const SvxSearchItem& rSearchItem, BOOL bFromStart = FALSE );
virtual Window* GetLayoutWindow();
EditorWindow& GetEditorWindow() { return aXEditorWindow.GetEdtWindow(); }
BreakPointWindow& GetBreakPointWindow() { return aXEditorWindow.GetBrkWindow(); }
ScrollBar& GetEditVScrollBar() { return aXEditorWindow.GetEWVScrollBar(); }
ExtTextEngine* GetEditEngine() { return GetEditorWindow().GetEditEngine(); }
ExtTextView* GetEditView() { return GetEditorWindow().GetEditView(); }
BreakPointList& GetBreakPoints() { return GetBreakPointWindow().GetBreakPoints(); }
ModulWindowLayout* GetLayout() const { return pLayout; }
virtual void BasicStarted();
virtual void BasicStopped();
virtual SfxUndoManager* GetUndoManager();
const ::rtl::OUString& GetModule() const { return m_aModule; }
void SetModule( const ::rtl::OUString& aModule ) { m_aModule = aModule; }
};
class ModulWindowLayout: public Window, public SfxListener
{
private:
Splitter aVSplitter;
Splitter aHSplitter;
WatchWindow aWatchWindow;
StackWindow aStackWindow;
BOOL bVSplitted;
BOOL bHSplitted;
ModulWindow * m_pModulWindow;
Color m_aSyntaxColors[TT_KEYWORD + 1];
svtools::ColorConfig m_aColorConfig;
ImageList m_aImagesNormal;
ImageList m_aImagesHighContrast;
virtual void DataChanged(DataChangedEvent const & rDCEvt);
virtual void Notify(SfxBroadcaster & rBc, SfxHint const & rHint);
void updateSyntaxHighlighting();
DECL_LINK( SplitHdl, Splitter * );
void ArrangeWindows();
protected:
virtual void Resize();
virtual void Paint( const Rectangle& rRect );
public:
ModulWindowLayout( Window* pParent );
~ModulWindowLayout();
void DockaWindow( DockingWindow* pDockingWin );
BOOL IsToBeDocked( DockingWindow* pDockingWin, const Point& rPos, Rectangle& rRect );
void SetModulWindow( ModulWindow* pModWin );
ModulWindow* GetModulWindow() const { return m_pModulWindow; }
WatchWindow& GetWatchWindow() { return aWatchWindow; }
StackWindow& GetStackWindow() { return aStackWindow; }
Image getImage(USHORT nId, bool bHighContrastMode) const;
inline Color const & getSyntaxColor(TokenTypes eType) const
{ return m_aSyntaxColors[eType]; }
};
#endif // _BASIDE2_HXX
|