diff options
Diffstat (limited to 'kparts/tests/notepad.cpp')
-rw-r--r-- | kparts/tests/notepad.cpp | 101 |
1 files changed, 0 insertions, 101 deletions
diff --git a/kparts/tests/notepad.cpp b/kparts/tests/notepad.cpp deleted file mode 100644 index 844a4ba17..000000000 --- a/kparts/tests/notepad.cpp +++ /dev/null @@ -1,101 +0,0 @@ - -#include "notepad.h" -#include <kparts/partmanager.h> -#include <kparts/mainwindow.h> - -#include <tqsplitter.h> -#include <tqfile.h> -#include <tqtextstream.h> -#include <tqmultilineedit.h> - -#include <kaboutdata.h> -#include <kapplication.h> -#include <kdebug.h> -#include <kaction.h> -#include <klocale.h> -#include <kstatusbar.h> -#include <kstandarddirs.h> - -NotepadPart::NotepadPart( TQWidget* parentWidget, const char*, - TQObject* parent, const char* name, - const TQStringList& ) - : KParts::ReadWritePart( parent, name ) -{ - setInstance( NotepadFactory::instance() ); - - m_edit = new TQMultiLineEdit( parentWidget, "NotepadPart's multiline edit" ); - setWidget( m_edit ); - - (void)new KAction( "Search and replace", 0, this, TQT_SLOT( slotSearchReplace() ), actionCollection(), "searchreplace" ); - setXMLFile( "notepadpart.rc" ); - setReadWrite( true ); -} - -NotepadPart::~NotepadPart() -{ -} - -void NotepadPart::setReadWrite( bool rw ) -{ - m_edit->setReadOnly( !rw ); - if (rw) - connect( m_edit, TQT_SIGNAL( textChanged() ), this, TQT_SLOT( setModified() ) ); - else - disconnect( m_edit, TQT_SIGNAL( textChanged() ), this, TQT_SLOT( setModified() ) ); - - ReadWritePart::setReadWrite( rw ); -} - -TDEAboutData* NotepadPart::createAboutData() -{ - return new TDEAboutData( "notepadpart", I18N_NOOP( "Notepad" ), "2.0" ); -} - -bool NotepadPart::openFile() -{ - kdDebug() << "NotepadPart: opening " << m_file << endl; - // Hehe this is from a tutorial I did some time ago :) - TQFile f(m_file); - TQString s; - if ( f.open(IO_ReadOnly) ) { - TQTextStream t( &f ); - while ( !t.eof() ) { - s += t.readLine() + "\n"; - } - f.close(); - } - m_edit->setText(s); - - emit setStatusBarText( m_url.prettyURL() ); - - return true; -} - -bool NotepadPart::saveFile() -{ - if ( !isReadWrite() ) - return false; - TQFile f(m_file); - TQString s; - if ( f.open(IO_WriteOnly) ) { - TQTextStream t( &f ); - t << m_edit->text(); - f.close(); - return true; - } else - return false; -} - -void NotepadPart::slotSearchReplace() -{ - // What's this ? (David) -/* - TQValueList<KParts::XMLGUIServant *> plugins = KParts::Plugin::pluginServants( this ); - TQValueList<KParts::XMLGUIServant *>::ConstIterator it = plugins.begin(); - TQValueList<KParts::XMLGUIServant *>::ConstIterator end = plugins.end(); - for (; it != end; ++it ) - factory()->removeServant( *it ); -*/ -} - -#include "notepad.moc" |