summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/test/kbase/KBase.java
blob: 22f5c96875b3a8162313f25c2daa72a2be445ece (plain)
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
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
import java.util.*;

import org.kde.qt.*;
import org.kde.koala.*;

/**
  * The base class for JavaApiTest application windows. It sets up the main
  * window and reads the config file as well as providing a menubar, toolbar
  * and statusbar. An instance of KBaseView creates your center view, which is connected
  * to the window's Doc object.
  * KBase reimplements the methods that KMainWindow provides for main window handling and supports
  * full session management as well as using KActions.
  * @see KMainWindow
  * @see TDEApplication
  * @see KConfig
  *
  * @author Source Framework Automatically Generated by KDevelop, (c) The KDevelop Team.
  * @version KDevelop version 1.2 code generation
  */
public class KBase extends KMainWindow
{
    public static final int ID_STATUS_MSG = 1;

	/** the configuration object of the application */
    private KConfig config;
    /** view is the main widget which represents your working area. The View
     * class should handle all events of the view widget.  It is kept empty so
     * you can create your view according to your application's needs by
     * changing the view class.
     */
    private KBaseView view;
    /** doc represents your actual document and is created only once. It keeps
     * information such as filename and does the serialization of your files.
     */
    private KBaseDoc doc;

    // KAction references to enable/disable actions
    private KAction fileNewWindow;
    private KAction fileNew;
    private KAction fileOpen;
    private KRecentFilesAction fileOpenRecent;
    private KAction fileSave;
    private KAction fileSaveAs;
    private KAction fileClose;
    private KAction filePrint;
    private KAction fileQuit;
    private KAction editCut;
    private KAction editCopy;
    private KAction editPaste;
    private KToggleAction viewToolBar;
    private KToggleAction viewStatusBar;

    /** construtor of KBase, calls all init functions to create the application.
     */
public KBase(TQWidget parent, String name)
{
  super(parent, name, 0);
  TDEApplication kapp = TDEApplication.kApplication();
  config=kapp.config();

  ///////////////////////////////////////////////////////////////////
  // call inits to invoke all other construction parts
  initStatusBar();
  initActions();
  initDocument();
  initView();
	
  readOptions();

  ///////////////////////////////////////////////////////////////////
  // disable actions at startup
  fileSave.setEnabled(false);
  fileSaveAs.setEnabled(false);
  filePrint.setEnabled(false);
  editCut.setEnabled(false);
  editCopy.setEnabled(false);
 }

public KBase()
{
	this(null, null);
}

    /** initializes the KActions of the application */
protected void initActions()
{
  fileNewWindow = new KAction(tr("New &Window"), "", new KShortcut(), this, SLOT("slotFileNewWindow()"), actionCollection(),"file_new_window");
  fileNew = KStdAction.openNew(this, SLOT("slotFileNew()"), actionCollection());
  fileOpen = KStdAction.open(this, SLOT("slotFileOpen()"), actionCollection());
  fileOpenRecent = (KRecentFilesAction) KStdAction.openRecent(this, SLOT("slotFileOpenRecent(KURL)"), actionCollection());
  fileSave = KStdAction.save(this, SLOT("slotFileSave()"), actionCollection());
  fileSaveAs = KStdAction.saveAs(this, SLOT("slotFileSaveAs()"), actionCollection());
  // this one crashes for me...
//  fileClose = KStdAction.close(this, SLOT(slotFileClose()), actionCollection());
  filePrint = KStdAction.print(this, SLOT("slotFilePrint()"), actionCollection());
  fileQuit = KStdAction.quit(this, SLOT("slotFileQuit()"), actionCollection());
  editCut = KStdAction.cut(this, SLOT("slotEditCut()"), actionCollection());
  editCopy = KStdAction.copy(this, SLOT("slotEditCopy()"), actionCollection());
  editPaste = KStdAction.paste(this, SLOT("slotEditPaste()"), actionCollection());
  createStandardStatusBarAction();
//  viewToolBar = KStdAction.showToolbar(this, SLOT("slotViewToolBar()"), actionCollection());
  viewStatusBar = KStdAction.showStatusbar(this, SLOT("slotViewStatusBar()"), actionCollection());

  fileNewWindow.setToolTip(tr("Opens a new application window"));
  fileNew.setToolTip(tr("Creates a new document"));
  fileOpen.setToolTip(tr("Opens an existing document"));
  fileOpenRecent.setToolTip(tr("Opens a recently used file"));
  fileSave.setToolTip(tr("Saves the actual document"));
  fileSaveAs.setToolTip(tr("Saves the actual document as..."));
//  fileClose.setToolTip(tr("Closes the actual document"));
  filePrint .setToolTip(tr("Prints out the actual document"));
  fileQuit.setToolTip(tr("Quits the application"));
  editCut.setToolTip(tr("Cuts the selected section and puts it to the clipboard"));
  editCopy.setToolTip(tr("Copies the selected section to the clipboard"));
  editPaste.setToolTip(tr("Pastes the clipboard contents to actual position"));
//  viewToolBar.setToolTip(tr("Enables/disables the toolbar"));
  viewStatusBar.setToolTip(tr("Enables/disables the statusbar"));

  // use the absolute path to your kbaseui.rc file for testing purpose in createGUI();
  createGUI();

}



    /** sets up the kstatusBar for the main window by initialzing a statuslabel.
     */
protected void initStatusBar()
{
  ///////////////////////////////////////////////////////////////////
  // STATUSBAR
  // TODO: add your own items you need for displaying current application status.
  kstatusBar().insertItem(tr("Ready."), ID_STATUS_MSG);
}

    /** initializes the document object of the main window that is connected to the view in initView().
     * @see initView();
     */
public void initDocument()
{
  doc = new KBaseDoc(this, null);
  doc.newDocument();
}

    /** creates the centerwidget of the KTMainWindow instance and sets it as the view
     */
protected void initView()
{
  ////////////////////////////////////////////////////////////////////
  // create the main widget here that is managed by KTMainWindow's view-region and
  // connect the widget to your document to display document contents.

  view = new KBaseView(this, null);
  doc.addView(view);
  setCentralWidget(view);	
  setCaption(doc.URL().fileName(),false);

}

    /** opens a file specified by commandline option
     */
public void openDocumentFile(KURL url)
{
  slotStatusMsg(tr("Opening file..."));

//   doc.openDocument( url);
   fileOpenRecent.addURL( url );
  slotStatusMsg(tr("Ready."));
}

public void openDocumentFile()
{
	openDocumentFile(new KURL(""));
	return;
}


    /** returns a pointer to the current document connected to the KTMainWindow instance and is used by
     * the View class to access the document object's methods
     */
public KBaseDoc getDocument()
{
  return doc;
}

    /** save general Options like all bar positions and status as well as the geometry and the recent file list to the configuration
     * file
     */
protected void saveOptions()
{
  config.setGroup("General Options");
  config.writeEntry("Geometry", size());
//  config.writeEntry("Show Toolbar", viewToolBar.isChecked());
  config.writeEntry("Show Statusbar",viewStatusBar.isChecked());
//  config.writeEntry("ToolBarPos", (int) toolBar("mainToolBar").barPos());
  fileOpenRecent.saveEntries(config,"Recent Files");
}


    /** read general Options again and initialize all variables like the recent file list
     */
protected void readOptions()
{
	
  config.setGroup("General Options");

  // bar status settings
//  boolean bViewToolbar = config.readBoolEntry("Show Toolbar", true);
//  viewToolBar.setChecked(bViewToolbar);
//  slotViewToolBar();

  boolean bViewStatusbar = config.readBoolEntry("Show Statusbar", true);
  viewStatusBar.setChecked(bViewStatusbar);
  slotViewStatusBar();


  // bar position settings
//  int toolBarPos;
  //Pos=(int) config.readNumEntry("ToolBarPos", KToolBar.Top);
//  toolBar("mainToolBar").setBarPos(toolBarPos);
	
  // initialize the recent file list
  fileOpenRecent.loadEntries(config,"Recent Files");

  TQSize size=config.readSizeEntry("Geometry", null);
  if(!size.isEmpty())
  {
    resize(size);
  }
}

    /** saves the window properties for each open window during session end to the session config file, including saving the currently
     * opened file by a temporary filename provided by TDEApplication.
     * @see KTMainWindow#saveProperties
     */
protected void saveProperties(KConfig _cfg)
{
  if(doc.URL().fileName()!=tr("Untitled") && !doc.isModified())
  {
    // saving to tempfile not necessary

  }
  else
  {
    KURL url=doc.URL();	
    _cfg.writeEntry("filename", url.url());
    _cfg.writeEntry("modified", doc.isModified());
    String tempname = TDEApplication.kApplication().tempSaveName(url.url());
    String tempurl= KURL.encode_string(tempname, 0);
    KURL _url = new KURL(tempurl);
    doc.saveDocument(_url);
  }
}


    /** reads the session config file and restores the application's state including the last opened files and documents by reading the
     * temporary files saved by saveProperties()
     * @see KTMainWindow#readProperties
     */
protected void readProperties(KConfig _cfg)
{
  String filename = _cfg.readEntry("filename", "");
  KURL url = new KURL(filename);
  boolean modified = _cfg.readBoolEntry("modified", false);
  if(modified)
  {
    boolean canRecover = false;
    String tempname = TDEApplication.kApplication().checkRecoverFile(filename, canRecover);
    KURL _url = new KURL(tempname);
  	
    if(canRecover)
    {
      doc.openDocument(_url);
      doc.setModified();
      setCaption(_url.fileName(),true);
      TQFile.remove(tempname);
    }
  }
  else
  {
    if(filename.length() > 0)
    {
      doc.openDocument(url);
      setCaption(url.fileName(),false);
    }
  }
}		

    /** queryClose is called by KTMainWindow on each closeEvent of a window. Against the
     * default implementation (only returns true), this calles saveModified() on the document object to ask if the document shall
     * be saved if Modified; on cancel the closeEvent is rejected.
     * @see KTMainWindow#queryClose
     * @see KTMainWindow#closeEvent
     */
protected boolean queryClose()
{
  return doc.saveModified();
}

    /** queryExit is called by KTMainWindow when the last window of the application is going to be closed during the closeEvent().
     * Against the default implementation that just returns true, this calls saveOptions() to save the settings of the last window's
     * properties.
     * @see KTMainWindow#queryExit
     * @see KTMainWindow#closeEvent
     */
protected boolean queryExit()
{
  saveOptions();
  return true;
}

/////////////////////////////////////////////////////////////////////
// SLOT IMPLEMENTATION
/////////////////////////////////////////////////////////////////////

    /** open a new application window by creating a new instance of KBase */
public void slotFileNewWindow()
{
  slotStatusMsg(tr("Opening a new application window..."));
	
  KBase new_window= new KBase();
  new_window.show();

  slotStatusMsg(tr("Ready."));
}

    /** clears the document in the actual view to reuse it as the new document */
public void slotFileNew()
{
  slotStatusMsg(tr("Creating new document..."));

  if(!doc.saveModified())
  {
     // here saving wasn't successful

  }
  else
  {	
    doc.newDocument();		
    setCaption(doc.URL().fileName(), false);
  }

  slotStatusMsg(tr("Ready."));
}

    /** open a file and load it into the document*/
public void slotFileOpen()
{
System.out.println("ENTER slotFileOpen()");
  slotStatusMsg(tr("Opening file..."));
	
  if(!doc.saveModified())
  {
     // here saving wasn't successful

  }
  else
  {	
    KURL url=KFileDialog.getOpenURL("",
        tr("*|All files"), this, tr("Open File..."));
    if(!url.isEmpty())
    {
      doc.openDocument(url);
      setCaption(url.fileName(), false);
      fileOpenRecent.addURL( url );
    }
  }
  slotStatusMsg(tr("Ready."));
}

    /** opens a file from the recent files menu */
public void slotFileOpenRecent(KURL url)
{
  slotStatusMsg(tr("Opening file..."));
	
  if(!doc.saveModified())
  {
     // here saving wasn't successful
  }
  else
  {
    doc.openDocument(url);
    setCaption(url.fileName(), false);
  }

  slotStatusMsg(tr("Ready."));
}

    /** save a document */
public void slotFileSave()
{
  slotStatusMsg(tr("Saving file..."));
	
  doc.saveDocument(doc.URL());

  slotStatusMsg(tr("Ready."));
}

   /** save a document by a new filename*/
public void slotFileSaveAs()
{
  slotStatusMsg(tr("Saving file with a new filename..."));

  KURL url=KFileDialog.getSaveURL(TQDir.currentDirPath(),
        tr("*|All files"), this, tr("Save as..."));
  if(!url.isEmpty())
  {
    doc.saveDocument(url);
    fileOpenRecent.addURL(url);
    setCaption(url.fileName(),doc.isModified());
  }

  slotStatusMsg(tr("Ready."));
}

    /** asks for saving if the file is modified, then closes the actual file and window*/
public void slotFileClose()
{
  slotStatusMsg(tr("Closing file..."));
	
  close();

  slotStatusMsg(tr("Ready."));
}

    /** print the actual file */
public void slotFilePrint()
{
  slotStatusMsg(tr("Printing..."));

  TQPrinter printer = new TQPrinter();
  if (printer.setup(this))
  {
    view.print(printer);
  }

  slotStatusMsg(tr("Ready."));
}

    /** closes all open windows by calling close() on each memberList item until the list is empty, then quits the application.
     * If queryClose() returns false because the user canceled the saveModified() dialog, the closing breaks.
     */
public void slotFileQuit()
{
  slotStatusMsg(tr("Exiting..."));
  saveOptions();
  // close the first window, the list makes the next one the first again.
  // This ensures that queryClose() is called on each window to ask for closing
  KMainWindow w;
  Iterator it = memberList().iterator();
  while(it.hasNext())
  {
    w=(KMainWindow)it.next();
    // only close the window if the closeEvent is accepted. If the user presses Cancel on the saveModified() dialog,
    // the window and the application stay open.
    if(!w.close())
	  break;
  }

  slotStatusMsg(tr("Ready."));
}

    /** put the marked text/object into the clipboard and remove
     *	it from the document
     */
public void slotEditCut()
{
  slotStatusMsg(tr("Cutting selection..."));

  slotStatusMsg(tr("Ready."));
}

    /** put the marked text/object into the clipboard
     */
public void slotEditCopy()
{
  slotStatusMsg(tr("Copying selection to clipboard..."));

  slotStatusMsg(tr("Ready."));
}

    /** paste the clipboard into the document
     */
public void slotEditPaste()
{
  slotStatusMsg(tr("Inserting clipboard contents..."));

  slotStatusMsg(tr("Ready."));
}

    /** toggles the toolbar
     */
public void slotViewToolBar()
{
  slotStatusMsg(tr("Toggling toolbar..."));
  ///////////////////////////////////////////////////////////////////
  // turn Toolbar on or off
//  if(!viewToolBar.isChecked())
//  {
//    toolBar("mainToolBar").hide();
//  }
//  else
//  {
//    toolBar("mainToolBar").show();
//  }		

  slotStatusMsg(tr("Ready."));
}

    /** toggles the statusbar
     */
public void slotViewStatusBar()
{
  slotStatusMsg(tr("Toggle the statusbar..."));
  ///////////////////////////////////////////////////////////////////
  //turn Statusbar on or off
  if(!viewStatusBar.isChecked())
  {
    kstatusBar().hide();
  }
  else
  {
    kstatusBar().show();
  }

  slotStatusMsg(tr("Ready."));
}


    /** changes the statusbar contents for the standard label permanently, used to indicate current actions.
     * @param text the text that is displayed in the statusbar
     */
public void slotStatusMsg(String text)
{
  ///////////////////////////////////////////////////////////////////
  // change status message permanently
  kstatusBar().clear();
  kstatusBar().changeItem(text, ID_STATUS_MSG);
}

static String description =
	"JavaApiTest";
// INSERT A DESCRIPTION FOR YOUR APPLICATION HERE


static String[][] options =
{
  { "+[File]", "file to open", null }
  // INSERT YOUR COMMANDLINE OPTIONS HERE
};

static String VERSION = "0.1";

public static void main(String[] cmdLineArgs)
{

	TDEAboutData aboutData = new TDEAboutData( "kbase", "JavaApiTest",
		VERSION, description, TDEAboutData.License_GPL,
		"(c) 2001, Richard Dale");
	aboutData.addAuthor("Richard Dale",null, "Lost_Highway@tipitina.demon.co.uk");
	TDECmdLineArgs.init( cmdLineArgs, aboutData );
	TDECmdLineArgs.addCmdLineOptions( options ); // Add our own options.

  TDEApplication app = new TDEApplication();

  if (app.isRestored())
  {
    RESTORE("KBase");
  }
  else
  {
    KBase kbase = new KBase();
    kbase.show();
    TDECmdLineArgs args = TDECmdLineArgs.parsedArgs();

		if (args.count() > 0)
		{
        kbase.openDocumentFile(new KURL(args.arg(0)));
		}
		else
		{
		  kbase.openDocumentFile();
		}
		args.clear();
  }

  app.exec();
  return;
}

	static {
                qtjava.initialize();
                kdejava.initialize();
	}

}