/* For general Scribus (>=1.3.2) copyright and licensing information please refer to the COPYING file provided with the program. Following this notice may exist a copyright and/or license notice that predates the release of Scribus 1.3.2 for which a new license (GPL+exception) is in place. */ #ifndef BIBLIO_H #define BIBLIO_H #include #include #include #include #include #include #include #include #include #include "scribusapi.h" #include "scrpalettebase.h" #include "scribusstructs.h" class SCRIBUS_API BibView : public QIconView { Q_OBJECT public: BibView( QWidget* parent); ~BibView() {}; void keyPressEvent(QKeyEvent *k); void AddObj(QString name, QString daten, QPixmap Bild); void SaveContents(QString name, QString oldName); void ReadOldContents(QString, QString newName); void ReadContents(QString name); struct Elem { QString Data; QPixmap Preview; }; QMap objectMap; QString ScFilename; bool canWrite; signals: void ToggleAllPalettes(); void Schliessen(); void CloseMpal(); void CloseTpal(); protected: virtual QDragObject *dragObject(); }; class SCRIBUS_API Biblio : public ScrPaletteBase { Q_OBJECT public: Biblio( QWidget* parent); ~Biblio() {}; void ObjFromMenu(QString text); void setScrapbookFileName(QString); const QString getScrapbookFileName(); const int objectCount(); void readContents(QString); void readOldContents(QString, QString); void installEventFilter(const QObject *); void setOpenScrapbooks(QStringList &fileNames); QStringList getOpenScrapbooks(); public slots: void languageChange(); private slots: void HandleMouse(QIconViewItem *ite); void DeleteObj(QString name, QIconViewItem *ite); void ItemRenamed(QIconViewItem *ite); void DropOn(QDropEvent *e); void NewLib(); void Load(); void SaveAs(); void closeLib(); void libChanged(QWidget *lib); void Import(); protected: // QMap > scrapbookActions; QPopupMenu* pmenu; QPopupMenu* fmenu; QMenuBar* menuBar; QTabWidget* Frame3; QVBoxLayout* BiblioLayout; BibView* activeBView; QString OldName; int mFile; int mView; int fNew; int fLoad; int fSave; int fSaveAs; int fClose; int fImport; }; #endif // BIBLIO_H