texteditor.cpp
author insilmaril
Fri, 19 Aug 2005 07:42:31 +0000
changeset 155 7f06b2e3afb5
parent 144 f4bbdc809fec
child 160 72cc3873306a
permissions -rw-r--r--
added license in new aboutwindow and debian subdir by Steffen Joeris
     1 /* emacs: -*- Mode: C; c-style: "bsd"; c-basic-offset: 4; c-recognize-knr-p: nil; -*- */
     2 #include "texteditor.h"
     3 
     4 #include <qcanvas.h>
     5 #include <qstatusbar.h>
     6 #include <qmessagebox.h>
     7 #include <qaction.h>
     8 #include <qapplication.h>
     9 #include <qpainter.h>
    10 #include <qprinter.h>
    11 #include <qfile.h>
    12 #include <qfiledialog.h>
    13 #include <qtoolbar.h>
    14 #include <qpopupmenu.h>
    15 #include <qmenubar.h>
    16 #include <qtextedit.h>
    17 #include <qaccel.h>
    18 #include <qtextstream.h>
    19 #include <qpaintdevicemetrics.h>
    20 #include <qsettings.h>
    21 #include <qfontdialog.h>
    22 #include <qmessagebox.h>
    23 #include <qcolordialog.h>
    24 #include <qregexp.h>
    25 #include <qlineedit.h>
    26 #include <qsimplerichtext.h>
    27 
    28 #include <iostream>
    29 #include <cstdlib>
    30 #include <typeinfo>
    31 
    32 #include "icons/fileopen.xpm"
    33 #include "icons/filesave.xpm"
    34 #include "icons/fileprint.xpm"
    35 #include "icons/editundo.xpm"	
    36 #include "icons/editredo.xpm"	
    37 #include "icons/editcopy.xpm"
    38 #include "icons/editcut.xpm"
    39 #include "icons/editpaste.xpm"
    40 #include "icons/edittrash.xpm"
    41 #include "icons/formatfixedfont.xpm"
    42 #include "icons/formattextbold.xpm"
    43 #include "icons/formattextitalic.xpm"
    44 #include "icons/formattextunder.xpm"
    45 #include "icons/formattextleft.xpm"
    46 #include "icons/formattextcenter.xpm"
    47 #include "icons/formattextright.xpm"
    48 #include "icons/formattextjustify.xpm"
    49 #include "icons/formattextsub.xpm"
    50 #include "icons/formattextsuper.xpm"
    51 
    52 extern QCanvas* actCanvas;
    53 extern int statusbarTime;
    54 extern QSettings settings;
    55 
    56 extern QAction *actionViewToggleNoteEditor;
    57 
    58 using namespace std;
    59 
    60 
    61 ///////////////////////////////////////////////////////////////////////
    62 ///////////////////////////////////////////////////////////////////////
    63 
    64 
    65 TextEditor::TextEditor()
    66 {
    67     printer = new QPrinter( QPrinter::HighResolution );
    68 	printer->setPrinterName (settings.readEntry("/vym/mainwindow/printerName",printer->printerName()));
    69 
    70 	// Editor (use MyTextEdit to wrap verticalAlignmentChanged to 
    71 	//         int argument. see header file)
    72     e = new MyTextEdit( this, "editor" );
    73     e->setFocus();
    74 	e->setTextFormat(RichText);		// default
    75 	e->setTabStopWidth (20);		// unit is pixel
    76 	e->setColor (black);
    77 	connect (e, SIGNAL( textChanged() ), this, SLOT( editorChanged() ) );
    78     setCentralWidget( e );
    79     statusBar()->message( "Ready", statusbarTime);
    80 	setCaption("VYM - Note Editor");
    81 
    82 	// Toolbars
    83 	setupFileActions();
    84 	setupEditActions();
    85 	setupFormatActions();
    86 	setupSettingsActions();
    87 	
    88 	// Various states
    89 	emptyPaper   = QBrush(gray);
    90 	filledPaper  = QBrush(white);
    91 	inactivePaper= QBrush(black);
    92 	setInactive();
    93 
    94 	// Load Settings
    95 	resize (settings.readNumEntry( "/vym/noteeditor/geometry/width", 450),
    96 	        settings.readNumEntry( "/vym/noteeditor/geometry/height",600));
    97 	move   (settings.readNumEntry( "/vym/noteeditor/geometry/posX", 150),
    98 	        settings.readNumEntry( "/vym/noteeditor/geometry/posY",  50));
    99 	
   100 	if (settings.readEntry( "/vym/noteeditor/showWithMain","yes") =="yes")
   101 		setShowWithMain(true);
   102 	else	
   103 		setShowWithMain(false);
   104 
   105 	varFont.fromString( settings.readEntry 
   106 		("/vym/noteeditor/fonts/varFont",
   107 		"Nimbus Sans l,14,-1,5,48,0,0,0,0,0") 
   108 	);
   109 	fixedFont.fromString (settings.readEntry (
   110 		"/vym/noteeditor/fonts/fixedFont",
   111 		"Courier,14,-1,5,48,0,0,0,1,0") 
   112 	);
   113 	QString s=settings.readEntry ("/vym/noteeditor/fonts/fonthintDefault","variable");
   114 	if (s == "fixed")
   115 	{	
   116 		actionSettingsFonthintDefault->setOn (true);
   117 		e->setCurrentFont (fixedFont);
   118 	} else	
   119 	{
   120 		actionSettingsFonthintDefault->setOn (false);
   121 		e->setCurrentFont (varFont);
   122 	}	
   123 	filenameHint="";
   124 
   125 	// Save settings in vymrc
   126 	settings.writeEntry("/vym/mainwindow/printerName",printer->printerName());
   127 }
   128 
   129 
   130 TextEditor::~TextEditor()
   131 {
   132     if (printer) delete printer;
   133 	// Save Settings
   134 	settings.writeEntry( "/vym/noteeditor/geometry/width", width() );
   135 	settings.writeEntry( "/vym/noteeditor/geometry/height", height() );
   136 	settings.writeEntry( "/vym/noteeditor/geometry/posX", pos().x() );
   137 	settings.writeEntry( "/vym/noteeditor/geometry/posY", pos().y() );
   138 	
   139 	if (showWithMain())
   140 		settings.writeEntry( "/vym/noteeditor/showWithMain","yes");
   141 	else	
   142 		settings.writeEntry( "/vym/noteeditor/showWithMain","no");
   143 
   144 	QString s;
   145 	if (actionSettingsFonthintDefault->isOn() )
   146 		s="fixed";
   147 	else	
   148 		s="variable";
   149 	settings.writeEntry( "/vym/noteeditor/fonts/fonthintDefault",s );
   150 	settings.writeEntry ("/vym/noteeditor/fonts/varFont",
   151 		varFont.toString() );
   152 	settings.writeEntry ("/vym/noteeditor/fonts/fixedFont",
   153 		fixedFont.toString() );
   154 }
   155 
   156 bool TextEditor::isEmpty()
   157 {
   158 	if (e->text().length())
   159 		return false;
   160 	else
   161 		return true;
   162 }
   163 
   164 void TextEditor::setShowWithMain(bool v)
   165 {
   166 	showwithmain=v;
   167 }
   168 
   169 bool TextEditor::showWithMain()
   170 {
   171 	return showwithmain;
   172 }
   173 
   174 void TextEditor::setFontHint (const QString &fh)
   175 {
   176 	if (fh=="fixed")
   177 		actionFormatUseFixedFont->setOn (true);
   178 	else
   179 		actionFormatUseFixedFont->setOn (false);
   180 }
   181 
   182 
   183 QString TextEditor::getFontHint()
   184 {
   185 	if (actionFormatUseFixedFont->isOn())
   186 		return "fixed";
   187 	else	
   188 		return "var";
   189 }
   190 
   191 QString TextEditor::getFontHintDefault()
   192 {
   193 	if (actionSettingsFonthintDefault->isOn())
   194 		return "fixed";
   195 	else	
   196 		return "var";
   197 }
   198 
   199 void TextEditor::setFilename(const QString &fn)
   200 {
   201 	if (state==filledEditor)
   202 		if (fn.isEmpty() )
   203 		{
   204 			filename="";
   205 			statusBar()->message( "No filename available for this note.", statusbarTime );
   206 		}	
   207 		else
   208 		{
   209 			filename=fn;
   210 			statusBar()->message( QString( "Current filename is %1" ).arg( filename ), statusbarTime );
   211 		}	
   212 }
   213 
   214 QString TextEditor::getFilename()
   215 {
   216 	return filename;
   217 }
   218 
   219 void TextEditor::setFilenameHint(const QString &fnh)
   220 {
   221 	filenameHint=fnh;
   222 }
   223 
   224 QString TextEditor::getFilenameHint()
   225 {
   226 	return filenameHint;
   227 }
   228 
   229 bool TextEditor::findText(const QString &t, const bool &cs)
   230 {
   231 	bool wo=false;	// word matches
   232 	if (e->find (t, cs, wo, true, 0, 0 ))
   233 		return true;
   234 	else	
   235 		return false;
   236 }
   237 
   238 void TextEditor::setupFileActions()
   239 {
   240     QToolBar *tb = new QToolBar( this );
   241     tb->setLabel( "File Actions" );
   242     QPopupMenu *menu = new QPopupMenu( this );
   243     menuBar()->insertItem( tr( "&File" ), menu );
   244 
   245     QAction *a;
   246     a = new QAction( tr( "Import" ), QPixmap( fileopen_xpm), tr( "&Import..." ), CTRL + Key_O, this, "fileImport" );
   247     connect( a, SIGNAL( activated() ), this, SLOT( textLoad() ) );
   248 	a->setEnabled(false);
   249     a->addTo( tb );
   250     a->addTo( menu );
   251 	actionFileLoad=a;
   252 
   253     menu->insertSeparator();
   254     a = new QAction( tr( "Export Note (HTML)" ), QPixmap( filesave_xpm ), tr( "&Export..." ), CTRL + Key_S, this, "fileSave" );
   255     connect( a, SIGNAL( activated() ), this, SLOT( textSave() ) );
   256     a->addTo( tb );
   257     a->addTo( menu );
   258 	actionFileSave=a;
   259 	
   260     a = new QAction( tr( "Export Note As (HTML) " ), QPixmap(), tr( "Export &As... (HTML)" ), 0, this, "exportHTML" );
   261     connect( a, SIGNAL( activated() ), this, SLOT( textSaveAs() ) );
   262     a->addTo( menu );
   263 	actionFileSaveAs=a;
   264 
   265     a = new QAction( tr( "Export Note As (ASCII) " ), QPixmap(), tr( "Export &As...(ASCII)" ), ALT + Key_X, this, "exportASCII" );
   266     connect( a, SIGNAL( activated() ), this, SLOT( textExportAsASCII() ) );
   267     a->addTo( menu );
   268 	actionFileSaveAs=a;
   269 
   270     menu->insertSeparator();
   271     a = new QAction( tr( "Print Note" ), QPixmap( fileprint_xpm ), tr( "&Print..." ), CTRL + Key_P, this, "filePrint" );
   272     connect( a, SIGNAL( activated() ), this, SLOT( textPrint() ) );
   273     a->addTo( tb );
   274     a->addTo( menu );
   275 	actionFilePrint=a;
   276 }
   277 
   278 void TextEditor::setupEditActions()
   279 {
   280     QToolBar *tb = new QToolBar( this );
   281     tb->setLabel( "Edit Actions" );
   282     QPopupMenu *menu = new QPopupMenu( this );
   283     menuBar()->insertItem( tr( "&Edit" ), menu );
   284 
   285     QAction *a;
   286     a = new QAction( tr( "Undo" ), QPixmap(editundo_xpm), tr( "&Undo" ), CTRL + Key_Z, this, "undoEvent" );
   287     connect( a, SIGNAL( activated() ), e, SLOT( undo() ) );
   288     a->addTo( menu );
   289     a->addTo( tb);
   290 	actionEditUndo=a;
   291 	
   292     a = new QAction( tr( "Redo" ), QPixmap( editredo_xpm ), tr( "&Redo" ), CTRL + Key_Y, this, "editRedo" ); 
   293     connect( a, SIGNAL( activated() ), e, SLOT( redo() ) );
   294     a->addTo( tb );
   295     a->addTo( menu );
   296 	actionEditRedo=a;
   297 
   298     menu->insertSeparator();
   299     a = new QAction( tr( "Select and copy all" ), QPixmap(), tr( "Select and copy &all" ), CTRL + Key_A, this, "editcopyall" ); 
   300     connect( a, SIGNAL( activated() ), this, SLOT( editCopyAll() ) );
   301     a->addTo( menu );
   302 
   303     menu->insertSeparator();
   304     a = new QAction( tr( "Copy" ), QPixmap( editcopy_xpm ), tr( "&Copy" ), CTRL + Key_C, this, "editCopy" );
   305     connect( a, SIGNAL( activated() ), e, SLOT( copy() ) );
   306     a->addTo( tb );
   307     a->addTo( menu );
   308 	actionEditCopy=a;
   309 	
   310     a = new QAction( tr( "Cut" ), QPixmap( editcut_xpm ), tr( "Cu&t" ), CTRL + Key_X, this, "editCut" );
   311     connect( a, SIGNAL( activated() ), e, SLOT( cut() ) );
   312     a->addTo( tb );
   313     a->addTo( menu );
   314 	actionEditCut=a;
   315 
   316     a = new QAction( tr( "Paste" ), QPixmap( editpaste_xpm ), tr( "&Paste" ), CTRL + Key_V, this, "editPaste" );
   317     connect( a, SIGNAL( activated() ), e, SLOT( paste() ) );
   318     a->addTo( tb );
   319     a->addTo( menu );
   320 	actionEditPaste=a;
   321 	
   322     a = new QAction( tr( "Delete all" ), QPixmap( edittrash_xpm ), tr( "&Delete All" ), 0, this, "editDeleteAll" );
   323     connect( a, SIGNAL( activated() ), e, SLOT( clear() ) );
   324     a->addTo( tb );
   325     a->addTo( menu );
   326 	actionEditDeleteAll=a;
   327 
   328 	a = new QAction( tr( "Convert paragraphs to linebreaks" ), QPixmap(), tr( "&Convert Paragraphs" ), ALT + Key_P, this, "editConvertPar" );
   329     connect( a, SIGNAL( activated() ), this, SLOT( textConvertPar() ) );
   330     a->addTo( menu );
   331 	actionEditConvertPar=a;
   332 
   333 	a = new QAction( tr( "Join all lines of a paragraph" ), QPixmap(), tr( "&Join lines" ), ALT + Key_J, this, "editJoinLines" );
   334     connect( a, SIGNAL( activated() ), this, SLOT( textJoinLines() ) );
   335     a->addTo( menu );
   336 	actionEditJoinLines=a;
   337 }
   338 
   339 void TextEditor::setupFormatActions()
   340 {
   341     QToolBar *tb = new QToolBar( this );
   342     tb->setLabel( "Format Actions" );
   343     QPopupMenu *menu = new QPopupMenu( this );
   344     menuBar()->insertItem( tr( "&Format" ), menu );
   345 
   346     QAction *a;
   347 
   348     a = new QAction( tr( "Toggle font hint for the whole text" ), QPixmap(formatfixedfont_xpm), tr( "&Font hint" ), ALT + Key_I, this, "fontHint" );
   349 	a->setToggleAction (true);
   350 	a->setOn (settings.readBoolEntry ("/vym/noteeditor/fonts/useFixedByDefault",false) );
   351     connect( a, SIGNAL( activated() ), this, SLOT( toggleFonthint() ) );
   352     a->addTo( menu );
   353     a->addTo( tb );
   354 	actionFormatUseFixedFont=a;
   355 
   356 	menu->insertSeparator();
   357 
   358     comboFont = new QComboBox( true, tb );
   359     QFontDatabase db;
   360     comboFont->insertStringList( db.families() );
   361     connect( comboFont, SIGNAL( activated( const QString & ) ),
   362 	     this, SLOT( textFamily( const QString & ) ) );
   363     comboFont->lineEdit()->setText( QApplication::font().family() );
   364 
   365     comboSize = new QComboBox( true, tb );
   366     QValueList<int> sizes = db.standardSizes();
   367     QValueList<int>::Iterator it = sizes.begin();
   368     for ( ; it != sizes.end(); ++it )
   369 	comboSize->insertItem( QString::number( *it ) );
   370     connect( comboSize, SIGNAL( activated( const QString & ) ),
   371 	     this, SLOT( textSize( const QString & ) ) );
   372     comboSize->lineEdit()->setText( QString::number( QApplication::font().pointSize() ) );
   373 
   374     menu->insertSeparator();
   375 
   376     QPixmap pix( 16, 16 );
   377     pix.fill( e->color());
   378     actionTextColor = new QAction( pix, tr( "&Color..." ), 0, this, "textColor" );
   379     connect( actionTextColor, SIGNAL( activated() ), this, SLOT( textColor() ) );
   380     actionTextColor->addTo( tb );
   381     actionTextColor->addTo( menu );
   382 
   383     actionTextBold = new QAction( QPixmap (formattextbold_xpm), tr( "&Bold" ), CTRL + Key_B, this, "textBold" );
   384     connect( actionTextBold, SIGNAL( activated() ), this, SLOT( textBold() ) );
   385     actionTextBold->addTo( tb );
   386     actionTextBold->addTo( menu );
   387     actionTextBold->setToggleAction( true );
   388     actionTextItalic = new QAction( QPixmap(formattextitalic_xpm ), tr( "&Italic" ), CTRL + Key_I, this, "textItalic" );
   389     connect( actionTextItalic, SIGNAL( activated() ), this, SLOT( textItalic() ) );
   390     actionTextItalic->addTo( tb );
   391     actionTextItalic->addTo( menu );
   392     actionTextItalic->setToggleAction( true );
   393     actionTextUnderline = new QAction( QPixmap (formattextunder_xpm ), tr( "&Underline" ), CTRL + Key_U, this, "textUnderline" );
   394     connect( actionTextUnderline, SIGNAL( activated() ), this, SLOT( textUnderline() ) );
   395     actionTextUnderline->addTo( tb );
   396     actionTextUnderline->addTo( menu );
   397     actionTextUnderline->setToggleAction( true );
   398     menu->insertSeparator();
   399 
   400     QActionGroup *grp = new QActionGroup( this );
   401     connect( grp, SIGNAL( selected( QAction* ) ), this, SLOT( textAlign( QAction* ) ) );
   402 
   403     actionAlignLeft = new QAction( QPixmap (formattextleft_xpm ), tr( "&Left" ), CTRL + Key_L, grp, "textLeft" );
   404     actionAlignLeft->setToggleAction( true );
   405     actionAlignCenter = new QAction( QPixmap (formattextcenter_xpm ), tr( "C&enter" ), CTRL + Key_E, grp, "textCenter" );
   406     actionAlignCenter->setToggleAction( true );
   407     actionAlignRight = new QAction( QPixmap (formattextright_xpm ), tr( "&Right" ), CTRL + Key_R, grp, "textRight" );
   408     actionAlignRight->setToggleAction( true );
   409     actionAlignJustify = new QAction( QPixmap ( formattextjustify_xpm ), tr( "&Justify" ), CTRL + Key_J, grp, "textjustify" );
   410     actionAlignJustify->setToggleAction( true );
   411 
   412     grp->addTo( tb );
   413     grp->addTo( menu );
   414 
   415     QActionGroup *grp2 = new QActionGroup( this );
   416     grp2->setExclusive(false);
   417     actionAlignSubScript = new QAction( QPixmap (formattextsub_xpm ), tr( "Subs&cript" ), CTRL + SHIFT + Key_B, grp2, "textSubscript" );
   418 
   419     actionAlignSubScript->setToggleAction( true );
   420     connect(actionAlignSubScript, SIGNAL(activated()), this, SLOT(textVAlign()));
   421 
   422     actionAlignSuperScript = new QAction( QPixmap (formattextsuper_xpm ), tr( "Su&perscript" ), CTRL + SHIFT + Key_P, grp2, "textSuperscript" );
   423 
   424     actionAlignSuperScript->setToggleAction( true );
   425     connect(actionAlignSuperScript, SIGNAL(activated()), this, SLOT(textVAlign()));
   426 
   427     menu->insertSeparator();
   428     
   429     grp2->addTo(tb);
   430     grp2->addTo(menu);
   431 
   432     connect( e, SIGNAL( currentFontChanged( const QFont & ) ),
   433 	     this, SLOT( fontChanged( const QFont & ) ) );
   434     connect( e, SIGNAL( currentColorChanged( const QColor & ) ),
   435 	     this, SLOT( colorChanged( const QColor & ) ) );
   436     connect( e, SIGNAL( currentAlignmentChanged( int ) ),
   437 	     this, SLOT( alignmentChanged( int ) ) );
   438     connect( e, SIGNAL( currentVerticalAlignmentChanged(int)),
   439 	     this, SLOT( verticalAlignmentChanged(int)));
   440 
   441 }
   442 
   443 void TextEditor::setupSettingsActions()
   444 {
   445     QPopupMenu *menu = new QPopupMenu( this );
   446     menuBar()->insertItem( tr( "&Settings" ), menu );
   447 
   448     QAction *a;
   449     a = new QAction( tr( "Set fixed font" ), QPixmap(), tr( "Set &fixed font" ), 0, this, "setFixedFont" );
   450     connect( a, SIGNAL( activated() ), this, SLOT( setFixedFont() ) );
   451     a->addTo( menu );
   452 	actionSettingsFixedFont=a;
   453 
   454     a = new QAction( tr( "Set variable font" ), QPixmap(), tr( "Set &variable font" ), 0, this, "setvariableFont" );
   455     connect( a, SIGNAL( activated() ), this, SLOT( setVarFont() ) );
   456     a->addTo( menu );
   457 	actionSettingsVarFont=a;
   458 
   459     a = new QAction( tr( "Used fixed font by default" ), QPixmap(), tr( "&fixed font is default" ), 0, this, "fonthintDefault" );
   460 	a->setToggleAction (true);
   461 	// set state later in constructor...
   462     a->addTo( menu );
   463 	actionSettingsFonthintDefault=a;
   464 }
   465 
   466 void TextEditor::textLoad()
   467 {
   468 	if (state!=inactiveEditor)
   469 	{
   470 		if (e->length()) 
   471 		{
   472 			QMessageBox mb( "VYM - Note Editor",
   473 				"Loading will overwrite the existing note",
   474 				QMessageBox::Warning,
   475 				QMessageBox::Yes | QMessageBox::Default,
   476 				QMessageBox::Cancel,
   477 				0 );
   478 			mb.setButtonText( QMessageBox::Yes, "Load note" );
   479 			switch( mb.exec() ) {
   480 				case QMessageBox::Cancel:
   481 					return;
   482 					break;
   483 			}
   484 		} 
   485 		// Load note
   486 		QFileDialog *fd=new QFileDialog( this);
   487 		fd->addFilter ("ASCII texts (*.txt)");
   488 		fd->addFilter ("VYM notes (*.html)");
   489 		fd->show();
   490 		QString fn;
   491 		if ( fd->exec() == QDialog::Accepted )
   492 			fn = fd->selectedFile();
   493 
   494 		if ( !fn.isEmpty() )
   495 		{
   496 			QFile f( fn );
   497 			if ( !f.open( IO_ReadOnly ) )
   498 			return;
   499 
   500 			QTextStream ts( &f );
   501 			setText( ts.read() );
   502 			editorChanged();
   503 		}
   504 	}
   505 }
   506 
   507 void TextEditor::closeEvent( QCloseEvent* ce )
   508 {
   509     ce->accept();	// TextEditor can be reopened with show()
   510     actionViewToggleNoteEditor->setOn (false);
   511     showwithmain=false;
   512     return;
   513 }
   514 
   515 QString TextEditor::getText()
   516 {
   517 	return e->text();
   518 }
   519 
   520 void TextEditor::editorChanged()
   521 {
   522 	// received, when QTextEdit::text() has changed
   523 	EditorState	oldstate=state;
   524 
   525 	if (isEmpty())
   526 		state=emptyEditor;
   527 	else
   528 		state=filledEditor;
   529 
   530 	if (state != oldstate)
   531 	{
   532 		if (state==emptyEditor)
   533 			e->setPaper (emptyPaper);
   534 		else
   535 			e->setPaper (filledPaper);
   536 	}
   537 	// SLOT is LinkableMapObj, which will update systemFlag
   538 	emit (textHasChanged() );
   539 }
   540 
   541 
   542 void TextEditor::setText(QString t)
   543 {
   544 	if ( !QStyleSheet::mightBeRichText( t ) )
   545 		t = QStyleSheet::convertFromPlainText( t, QStyleSheetItem::WhiteSpaceNormal );
   546 	e->setReadOnly(false);
   547 	e->setText(t);
   548 	editorChanged();	//not called automagically
   549 
   550 	enableActions();
   551 }
   552 
   553 void TextEditor::setInactive()
   554 {
   555 	state=inactiveEditor;
   556 	setText("");
   557 	e->setPaper (inactivePaper);
   558 	e->setReadOnly (true);
   559 
   560 	disableActions();
   561 }
   562 
   563 void TextEditor::editCopyAll()
   564 {
   565 	e->selectAll();
   566 	e->copy();
   567 }
   568 
   569 void TextEditor::textSaveAs()
   570 {
   571     QString fn = QFileDialog::getSaveFileName( QString::null, "VYM Note (HTML) (*.html);;All files (*)",
   572 					       this,"export note dialog",tr("Export Note to single file") );
   573 
   574     if ( !fn.isEmpty() ) 
   575 	{
   576 		QFile file (fn);
   577 		if (file.exists())
   578 		{
   579 			QMessageBox mb( "VYM",
   580 				tr("The file ") + fn + 
   581 				tr(" exists already. "
   582 				"Do you want to overwrite it?"),
   583 			QMessageBox::Warning,
   584 			QMessageBox::Yes | QMessageBox::Default,
   585 			QMessageBox::Cancel | QMessageBox::Escape,
   586 			QMessageBox::NoButton );
   587 			mb.setButtonText( QMessageBox::Yes, tr("Overwrite") );
   588 			mb.setButtonText( QMessageBox::No, tr("Cancel"));
   589 			switch( mb.exec() ) {
   590 				case QMessageBox::Yes:
   591 					// save 
   592 					filename = fn;
   593 					textSave();
   594 					return;
   595 				case QMessageBox::Cancel:
   596 					// do nothing
   597 					break;
   598 			}
   599 		} else
   600 		{
   601 			filename = fn;
   602 			textSave();
   603 			return;
   604 		}			
   605     }
   606 	statusBar()->message(tr( "Couldn't export note ") + fn, statusbarTime );
   607 }
   608 
   609 
   610 void TextEditor::textSave()
   611 {
   612     if ( filename.isEmpty() ) 
   613 	{
   614 		textSaveAs();
   615 		return;
   616     }
   617 
   618     QString text = e->text();
   619     QFile f( filename );
   620     if ( !f.open( IO_WriteOnly ) ) 
   621 	{
   622 		statusBar()->message( QString("Could not write to %1").arg(filename),
   623 					  statusbarTime );
   624 		return;
   625     }
   626 
   627     QTextStream t( &f );
   628     t << text;
   629     f.close();
   630 
   631     e->setModified( FALSE );
   632 
   633     statusBar()->message( QString( "Note exported as %1" ).arg( filename ), statusbarTime );
   634 }
   635 
   636 void TextEditor::textConvertPar()
   637 {
   638 	// In X11 a copy&paste generates paragraphs, 
   639 	// which is not always wanted
   640 	// This function replaces paragraphs by linebreaks.
   641 	int parFrom, parTo, indFrom, indTo;
   642 	e->getSelection (&parFrom,&indFrom,&parTo,&indTo);
   643 	QString t;
   644 	if (parFrom>-1)
   645 		t=e->selectedText();
   646 	else
   647 		t=e->text();
   648 
   649 	QRegExp re("<p.*>");
   650 	re.setMinimal(true);
   651 	t.replace (re,"");
   652 	t.replace ("</p>","<br />");
   653 	if (parFrom>-1)
   654 	{
   655 		e->setCursorPosition (parFrom,indFrom);
   656 		e->cut();
   657 		// Tried to simply insert the changed text with
   658 		// e->insert (t,(uint)(QTextEdit::RemoveSelected));
   659 		// but then the html would be quoted. So I use the ugly
   660 		// way: insert a marker, replace it in whole text of QTextEdit
   661 		QString marker="R3PlAcEMeL4teR!";
   662 		e->insert (marker);
   663 		e->setText (e->text().replace(marker,t));
   664 	} else
   665 		e->setText(t);
   666 }
   667 
   668 void TextEditor::textJoinLines()
   669 {
   670 	int parFrom, parTo, indFrom, indTo;
   671 	e->getSelection (&parFrom,&indFrom,&parTo,&indTo);
   672 	QString t;
   673 	if (parFrom>-1)
   674 		t=e->selectedText();
   675 	else
   676 		t=e->text();
   677 	// In addition to textConvertPar it is sometimes
   678 	// useful to join all lines of a paragraph
   679 	QRegExp re("</p>\n+<p>(?!</p>)");
   680 	re.setMinimal(true);
   681 	t.replace (re," ");
   682 
   683 	// Above we may have introduced new " " at beginning of a
   684 	// paragraph - remove it.
   685 	re.setPattern("<p> ");
   686 	t.replace (re,"<p>");
   687 	if (parFrom>-1)
   688 	{
   689 		e->setCursorPosition (parFrom,indFrom);
   690 		e->cut();
   691 		// Tried to simply insert the changed text with
   692 		// e->insert (t,(uint)(QTextEdit::RemoveSelected));
   693 		// but then the html would be quoted. So I use the ugly
   694 		// way: insert a marker, replace it in whole text of QTextEdit
   695 		QString marker="R3PlAcEMeL4teR!";
   696 		e->insert (marker);
   697 		e->setText (e->text().replace(marker,t));
   698 	} else
   699 		e->setText(t);
   700 }
   701 
   702 QString textConvertToASCII(const QString &t)
   703 {
   704 	QString r=t;
   705 
   706 	// convert all "<br*>" to "\n"
   707 	QRegExp re("<br.*>");
   708 	re.setMinimal(true);
   709 	r.replace (re,"\n");
   710 
   711 	// convert all "<p>" to "\n"
   712 	re.setPattern ("<p>");
   713 	r.replace (re,"\n");
   714 	
   715 	// remove all remaining tags 
   716 	re.setPattern ("<.*>");
   717 	r.replace (re,"");
   718 
   719 	// convert "&", "<" and ">"
   720 	re.setPattern ("&gt;");
   721 	r.replace (re,">");
   722 	re.setPattern ("&lt;");
   723 	r.replace (re,"<");
   724 	re.setPattern ("&amp;");
   725 	r.replace (re,"&");
   726 	re.setPattern ("&quot;");
   727 	r.replace (re,"\"");
   728 	return r;
   729 }
   730 
   731 void TextEditor::textExportAsASCII()
   732 {
   733 	QString text = textConvertToASCII( e->text());
   734 	QString fn,s;
   735 	if (!filenameHint.isEmpty())
   736 	{
   737 		if (!filenameHint.contains (".txt"))
   738 			s=filenameHint+".txt";
   739 		else	
   740 			s=filenameHint;
   741 	} else	
   742 		s=QString::null;
   743 	fn = QFileDialog::getSaveFileName( s, "VYM Note (ASCII) (*.txt);;All files (*)", this,"export note dialog",tr("Export Note to single file (ASCII)") );
   744 	int ret=-1;
   745 
   746     if ( !fn.isEmpty() ) 
   747 	{
   748 		QFile file (fn);
   749 		if (file.exists())
   750 		{
   751 			QMessageBox mb( "VYM",
   752 				tr("The file ") + fn + 
   753 				tr(" exists already. "
   754 				"Do you want to overwrite it?"),
   755 			QMessageBox::Warning,
   756 			QMessageBox::Yes | QMessageBox::Default,
   757 			QMessageBox::Cancel | QMessageBox::Escape,
   758 			QMessageBox::NoButton );
   759 			mb.setButtonText( QMessageBox::Yes, tr("Overwrite") );
   760 			mb.setButtonText( QMessageBox::No, tr("Cancel"));
   761 			ret=mb.exec();
   762 		}	
   763 		if (ret==QMessageBox::Cancel)
   764 			return;
   765 			
   766 		// save 
   767 		if ( !file.open( IO_WriteOnly ) ) 
   768 			statusBar()->message( QString("Could not write to %1").arg(filename),
   769 						  statusbarTime );
   770 		else
   771 		{
   772 			QTextStream t( &file );
   773 			t << text;
   774 			file.close();
   775 
   776 			statusBar()->message( QString( "Note exported as %1" ).arg( fn ), statusbarTime );
   777 		}
   778     }
   779 }
   780 
   781 
   782 void TextEditor::textPrint()
   783 {
   784     printer->setFullPage(TRUE);
   785     if ( printer->setup( this ) ) 
   786 	{
   787 		QPainter p( printer );
   788 		// Check that there is a valid device to print to.
   789 		if ( !p.device() ) return;
   790 		QPaintDeviceMetrics metrics( p.device() );
   791 		int dpiy = metrics.logicalDpiY();
   792 		int margin = (int) ( (2/2.54)*dpiy ); // 2 cm margins
   793 		QRect body( margin, margin, metrics.width() - 2*margin, metrics.height() - 2*margin );
   794 		QFont font( e->currentFont() );
   795 		font.setPointSize( 10 ); // we define 10pt to be a nice base size for printing
   796 
   797 		QSimpleRichText richText( e->text(), font,
   798 					  e->context(),
   799 					  e->styleSheet(),
   800 					  e->mimeSourceFactory(),
   801 					  body.height() );
   802 		richText.setWidth( &p, body.width() );
   803 		QRect view( body );
   804 		int page = 1;
   805 		do 
   806 		{
   807 			richText.draw( &p, body.left(), body.top(), view, colorGroup() );
   808 			view.moveBy( 0, body.height() );
   809 			p.translate( 0 , -body.height() );
   810 			p.setFont( font );
   811 			p.drawText( view.right() - p.fontMetrics().width( QString::number( page ) ),
   812 				view.bottom() + p.fontMetrics().ascent() + 5, QString::number( page ) );
   813 			if ( view.top()  >= richText.height() )
   814 			break;
   815 			printer->newPage();
   816 			page++;
   817 		} while (TRUE);
   818     }
   819 }
   820 
   821 void TextEditor::textEditUndo()
   822 {
   823 }
   824 
   825 void TextEditor::toggleFonthint()
   826 {
   827 	setUpdatesEnabled (false);
   828 	e->selectAll (true);
   829 	if (!actionFormatUseFixedFont->isOn() ) 
   830 		e->setCurrentFont (varFont);
   831 	else	
   832 		e->setCurrentFont (fixedFont);
   833 	e->selectAll (false);
   834 	setUpdatesEnabled (true);
   835 	repaint();
   836 }
   837 
   838 void TextEditor::setFixedFont()
   839 {
   840 	bool ok;
   841 	QFont font =QFontDialog::getFont(
   842                     &ok, fixedFont, this );
   843     if ( ok ) 
   844         // font is set to the font the user selected
   845 		fixedFont=font;
   846 }
   847 
   848 void TextEditor::setVarFont()
   849 {
   850 	bool ok;
   851 	QFont font =QFontDialog::getFont(
   852                     &ok, varFont, this );
   853     if ( ok ) 
   854         // font is set to the font the user selected
   855 		varFont=font;
   856 }
   857 
   858 void TextEditor::textBold()
   859 {
   860     e->setBold( actionTextBold->isOn() );
   861 }
   862 
   863 void TextEditor::textUnderline()
   864 {
   865     e->setUnderline( actionTextUnderline->isOn() );
   866 }
   867 
   868 void TextEditor::textItalic()
   869 {
   870     e->setItalic( actionTextItalic->isOn() );
   871 }
   872 
   873 void TextEditor::textFamily( const QString &f )
   874 {
   875     e->setFamily( f );
   876 }
   877 
   878 void TextEditor::textSize( const QString &p )
   879 {
   880     e->setPointSize( p.toInt() );
   881 }
   882 
   883 
   884 void TextEditor::textColor()
   885 {
   886     QColor col = QColorDialog::getColor( e->color(), this );
   887     if ( !col.isValid() )
   888 	return;
   889     e->setColor( col );
   890     QPixmap pix( 16, 16 );
   891     pix.fill( black );
   892     actionTextColor->setIconSet( pix );
   893 }
   894 
   895 void TextEditor::textAlign( QAction *a )
   896 {
   897     if ( a == actionAlignLeft )
   898 	e->setAlignment( AlignLeft );
   899     else if ( a == actionAlignCenter )
   900 	e->setAlignment( AlignHCenter );
   901     else if ( a == actionAlignRight )
   902 	e->setAlignment( AlignRight );
   903     else if ( a == actionAlignJustify )
   904 	e->setAlignment( AlignJustify );
   905 }
   906 
   907 void TextEditor::textVAlign()
   908 {
   909     if ( sender() == actionAlignSuperScript && actionAlignSuperScript->isOn()) {
   910 	e->setVerticalAlignment( QTextEdit::AlignSuperScript);
   911     } else if (sender() == actionAlignSubScript && actionAlignSubScript->isOn()) {
   912 	e->setVerticalAlignment( QTextEdit::AlignSubScript);
   913     } else {
   914 	e->setVerticalAlignment( QTextEdit::AlignNormal);
   915     }
   916 }
   917 
   918 
   919 void TextEditor::fontChanged( const QFont &f )
   920 {
   921     comboFont->lineEdit()->setText( f.family() );
   922     comboSize->lineEdit()->setText( QString::number( f.pointSize() ) );
   923     actionTextBold->setOn( f.bold() );
   924     actionTextItalic->setOn( f.italic() );
   925     actionTextUnderline->setOn( f.underline() );
   926 }
   927 
   928 void TextEditor::colorChanged( const QColor &c )
   929 {
   930     QPixmap pix( 16, 16 );
   931     pix.fill( c );
   932     actionTextColor->setIconSet( pix );
   933 }
   934 
   935 void TextEditor::alignmentChanged( int a )
   936 {
   937     if ( ( a == AlignAuto ) || ( a & AlignLeft ))
   938 	actionAlignLeft->setOn( true );
   939     else if ( ( a & AlignHCenter ) )
   940 	actionAlignCenter->setOn( true );
   941     else if ( ( a & AlignRight ) )
   942 	actionAlignRight->setOn( true );
   943     else if ( ( a & AlignJustify ) )
   944 	actionAlignJustify->setOn( true );
   945 }
   946 
   947 void TextEditor::verticalAlignmentChanged(int a) 
   948 {
   949     if (a == QTextEdit::AlignSuperScript ) {
   950 	actionAlignSuperScript->setOn(true);
   951 	actionAlignSubScript->setOn(false);
   952     } else if (a == QTextEdit::AlignSubScript ) {
   953 	actionAlignSuperScript->setOn(false);
   954 	actionAlignSubScript->setOn(true);
   955     } else {
   956 	actionAlignSuperScript->setOn(false);
   957 	actionAlignSubScript->setOn(false);
   958     }
   959 }
   960 
   961 
   962 
   963 void TextEditor::enableActions()
   964 {
   965 	actionFileLoad->setEnabled(true);
   966 	actionFileSave->setEnabled(true);
   967 	actionFileSaveAs->setEnabled(true);
   968 	actionFilePrint->setEnabled(true);
   969 	actionEditUndo->setEnabled(true);
   970 	actionEditRedo->setEnabled(true);
   971 	actionEditCopy->setEnabled(true);
   972 	actionEditCut->setEnabled(true);
   973 	actionEditPaste->setEnabled(true);
   974 	actionEditDeleteAll->setEnabled(true);
   975 	actionEditConvertPar->setEnabled(true);
   976 	actionEditJoinLines->setEnabled(true);
   977 	actionFormatUseFixedFont->setEnabled(true);
   978 }
   979 
   980 void TextEditor::disableActions()
   981 {
   982 	actionFileLoad->setEnabled(false);
   983 	actionFileSave->setEnabled(false);
   984 	actionFileSaveAs->setEnabled(false);
   985 	actionFilePrint->setEnabled(false);
   986 	actionEditUndo->setEnabled(false);
   987 	actionEditRedo->setEnabled(false);
   988 	actionEditCopy->setEnabled(false);
   989 	actionEditCut->setEnabled(false);
   990 	actionEditPaste->setEnabled(false);
   991 	actionEditDeleteAll->setEnabled(false);
   992 	actionEditConvertPar->setEnabled(false);
   993 	actionEditJoinLines->setEnabled(false);
   994 	actionFormatUseFixedFont->setEnabled(false);
   995 }
   996 
   997