diff options
Diffstat (limited to 'src/notefactory.h')
-rw-r--r-- | src/notefactory.h | 78 |
1 files changed, 39 insertions, 39 deletions
diff --git a/src/notefactory.h b/src/notefactory.h index 3fee459..de48562 100644 --- a/src/notefactory.h +++ b/src/notefactory.h @@ -21,13 +21,13 @@ #ifndef NOTEFACTORY_H #define NOTEFACTORY_H -#include <qevent.h> +#include <tqevent.h> #include <kurl.h> -#include <qstringlist.h> +#include <tqstringlist.h> -class QString; -class QPixmap; -class QColor; +class TQString; +class TQPixmap; +class TQColor; class Basket; class Note; @@ -45,52 +45,52 @@ namespace NoteFactory * In some cases, the returned note can be a group containing several notes or the first note of a chained list. * The method Basket::TODO() can insert several grouped or chained notes without problem. */ - Note* createNoteText( const QString &text, Basket *parent, bool reallyPlainText = false); - Note* createNoteHtml( const QString &html, Basket *parent); - Note* createNoteLink( const KURL &url, Basket *parent); - Note* createNoteLink( const KURL &url, const QString &title, Basket *parent); - Note* createNoteImage( const QPixmap &image, Basket *parent); - Note* createNoteColor( const QColor &color, Basket *parent); - Note* createNoteFromText( const QString &content, Basket *parent); // Find automatically the type from the text meaning // TODO: Return Note::List? - Note* createNoteLauncher( const KURL &url, Basket *parent); - Note* createNoteLauncher( const QString &command, const QString &name, const QString &icon, Basket *parent); - Note* createNoteUnknown( QMimeSource *source, Basket *parent); + Note* createNoteText( const TQString &text, Basket *tqparent, bool reallyPlainText = false); + Note* createNoteHtml( const TQString &html, Basket *tqparent); + Note* createNoteLink( const KURL &url, Basket *tqparent); + Note* createNoteLink( const KURL &url, const TQString &title, Basket *tqparent); + Note* createNoteImage( const TQPixmap &image, Basket *tqparent); + Note* createNoteColor( const TQColor &color, Basket *tqparent); + Note* createNoteFromText( const TQString &content, Basket *tqparent); // Find automatically the type from the text meaning // TODO: Return Note::List? + Note* createNoteLauncher( const KURL &url, Basket *tqparent); + Note* createNoteLauncher( const TQString &command, const TQString &name, const TQString &icon, Basket *tqparent); + Note* createNoteUnknown( TQMimeSource *source, Basket *tqparent); /** Functions to create derived notes from a content */ - Note* createNoteLinkOrLauncher( const KURL &url, Basket *parent); - Note* copyFileAndLoad( const KURL &url, Basket *parent); - Note* moveFileAndLoad( const KURL &url, Basket *parent); - Note* loadFile( const QString &fileName, Basket *parent); /// << Determine the content of the file (the file SHOULD exists) and return a note of the good type. - Note* loadFile( const QString &fileName, NoteType::Id type, Basket *parent ); /// << Create a note of type @p type. The file is not obliged to exist. + Note* createNoteLinkOrLauncher( const KURL &url, Basket *tqparent); + Note* copyFileAndLoad( const KURL &url, Basket *tqparent); + Note* moveFileAndLoad( const KURL &url, Basket *tqparent); + Note* loadFile( const TQString &fileName, Basket *tqparent); /// << Determine the content of the file (the file SHOULD exists) and return a note of the good type. + Note* loadFile( const TQString &fileName, NoteType::Id type, Basket *tqparent ); /// << Create a note of type @p type. The file is not obliged to exist. /** Functions to create a new note from a drop or past event */ - Note* dropNote(QMimeSource *source, Basket *parent, - bool fromDrop = false, QDropEvent::Action action = QDropEvent::Copy, Note *noteSource = 0); - bool movingNotesInTheSameBasket(QMimeSource *source, Basket *parent, QDropEvent::Action action); - Note* dropURLs(KURL::List urls, Basket *parent, QDropEvent::Action action, bool fromDrop); - Note* decodeContent(QDataStream &stream, NoteType::Id type, Basket *parent); /// << Decode the @p stream to a note or return 0 if a general loadFile() is sufficient. - void consumeContent(QDataStream &stream, NoteType::Id type); /// << Decode the @p stream to a note or return 0 if a general loadFile() is sufficient. + Note* dropNote(TQMimeSource *source, Basket *tqparent, + bool fromDrop = false, TQDropEvent::Action action = TQDropEvent::Copy, Note *noteSource = 0); + bool movingNotesInTheSameBasket(TQMimeSource *source, Basket *tqparent, TQDropEvent::Action action); + Note* dropURLs(KURL::List urls, Basket *tqparent, TQDropEvent::Action action, bool fromDrop); + Note* decodeContent(TQDataStream &stream, NoteType::Id type, Basket *tqparent); /// << Decode the @p stream to a note or return 0 if a general loadFile() is sufficient. + void consumeContent(TQDataStream &stream, NoteType::Id type); /// << Decode the @p stream to a note or return 0 if a general loadFile() is sufficient. /** Functions to create a note file but not load it in a note object */ - QString createNoteLauncherFile(const QString &command, const QString &name, const QString &icon, Basket *parent); + TQString createNoteLauncherFile(const TQString &command, const TQString &name, const TQString &icon, Basket *tqparent); /** Other useful functions */ - NoteType::Id typeForURL(const KURL &url, Basket *parent); + NoteType::Id typeForURL(const KURL &url, Basket *tqparent); bool maybeText(const KURL &url); bool maybeHtml(const KURL &url); bool maybeImageOrAnimation(const KURL &url); bool maybeAnimation(const KURL &url); bool maybeSound(const KURL &url); bool maybeLauncher(const KURL &url); - QString fileNameForNewNote(Basket *parent, const QString &wantedName); - QString createFileForNewNote(Basket *parent, const QString &extension, const QString &wantedName = ""); + TQString fileNameForNewNote(Basket *tqparent, const TQString &wantedName); + TQString createFileForNewNote(Basket *tqparent, const TQString &extension, const TQString &wantedName = ""); KURL filteredURL(const KURL &url); - QString titleForURL(const KURL &url); - QString iconForURL(const KURL &url); - QString iconForCommand(const QString &command); - bool isIconExist(const QString &icon); - QStringList textToURLList(const QString &text); // @Return { url1, title1, url2, title2, url3, title3... } + TQString titleForURL(const KURL &url); + TQString iconForURL(const KURL &url); + TQString iconForCommand(const TQString &command); + bool isIconExist(const TQString &icon); + TQStringList textToURLList(const TQString &text); // @Return { url1, title1, url2, title2, url3, title3... } /** Insert GUI menu */ - Note* createEmptyNote( NoteType::Id type, Basket *parent ); // Insert empty if of type Note::Type - Note* importKMenuLauncher(Basket *parent); - Note* importIcon(Basket *parent); - Note* importFileContent(Basket *parent); + Note* createEmptyNote( NoteType::Id type, Basket *tqparent ); // Insert empty if of type Note::Type + Note* importKMenuLauncher(Basket *tqparent); + Note* importIcon(Basket *tqparent); + Note* importFileContent(Basket *tqparent); } #endif // NOTEFACTORY_H |