summaryrefslogtreecommitdiffstats
path: root/src/entrywidget.h
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2013-06-24 02:08:15 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-07-04 02:44:37 +0200
commit998f21e02a725cd553d7c278819f67cd81295af4 (patch)
tree4bd158018e9302c31367b00c01cd2b41eb228414 /src/entrywidget.h
downloadkbibtex-998f21e02a725cd553d7c278819f67cd81295af4.tar.gz
kbibtex-998f21e02a725cd553d7c278819f67cd81295af4.zip
Initial import
Diffstat (limited to 'src/entrywidget.h')
-rw-r--r--src/entrywidget.h158
1 files changed, 158 insertions, 0 deletions
diff --git a/src/entrywidget.h b/src/entrywidget.h
new file mode 100644
index 0000000..10dfd13
--- /dev/null
+++ b/src/entrywidget.h
@@ -0,0 +1,158 @@
+/***************************************************************************
+* Copyright (C) 2004-2006 by Thomas Fischer *
+* fischer@unix-ag.uni-kl.de *
+* *
+* This program is free software; you can redistribute it and/or modify *
+* it under the terms of the GNU General Public License as published by *
+* the Free Software Foundation; either version 2 of the License, or *
+* (at your option) any later version. *
+* *
+* This program is distributed in the hope that it will be useful, *
+* but WITHOUT ANY WARRANTY; without even the implied warranty of *
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
+* GNU General Public License for more details. *
+* *
+* You should have received a copy of the GNU General Public License *
+* along with this program; if not, write to the *
+* Free Software Foundation, Inc., *
+* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
+***************************************************************************/
+#ifndef KBIBTEXENTRYWIDGET_H
+#define KBIBTEXENTRYWIDGET_H
+
+#include <qwidget.h>
+#include <qdialog.h>
+#include <qvaluelist.h>
+#include <qmap.h>
+
+#include <kdialogbase.h>
+
+#include <entry.h>
+#include <entrywidgetsource.h>
+#include <webquery.h>
+
+class QComboBox;
+class QLineEdit;
+class QCheckBox;
+class QTabWidget;
+class QString;
+class QTimer;
+class QListView;
+
+class KConfig;
+
+namespace KBibTeX
+{
+ class EntryWidgetTab;
+ class WebQueryArXiv;
+
+ class EntryWidget : public QWidget
+ {
+ Q_OBJECT
+
+ friend class EntryWidgetDialog;
+
+ public:
+ ~EntryWidget();
+
+ static QDialog::DialogCode execute( BibTeX::Entry *entry, BibTeX::File *bibtexfile, bool isReadOnly, bool isNew, QWidget *parent = 0, const char *name = 0 );
+
+ protected:
+ EntryWidget( BibTeX::File *bibtexfile, bool isReadOnly, bool isNew, QDialog *parent, const char *name = 0 );
+ void showEvent( QShowEvent * );
+ bool queryClose();
+
+ private slots:
+ void apply();
+ void reset();
+ void apply( BibTeX::Entry *entry );
+ void reset( BibTeX::Entry *entry );
+ void slotEnableAllFields();
+ void slotForceDefaultIdSuggestion();
+ void slotEntryTypeChanged();
+ void slotCurrentPageChanged( QWidget* newPage );
+ void warningsExecute( QListViewItem* item );
+ void updateWarnings();
+ void insertIdSuggestion( int id );
+ void updateIdSuggestionsMenu();
+ void refreshFromURL();
+ void useExternalEntry( BibTeX::Entry*, bool );
+ void endExternalSearch( WebQuery::Status );
+
+ signals:
+ void updateTabs( BibTeX::Entry::EntryType entryType, bool enableAll, bool isReadOnly );
+
+ private:
+ EntryWidget( BibTeX::Entry *entry, BibTeX::File *bibtexfile, bool isReadOnly, bool isNew, QDialog *parent, const char *name = 0 );
+ BibTeX::Entry *m_originalEntry;
+ BibTeX::File *m_bibtexfile;
+ bool m_isReadOnly;
+ bool m_isNew;
+ bool m_defaultIdSuggestionAvailable;
+
+ QComboBox *m_comboBoxEntryType;
+ QLineEdit *m_lineEditID;
+ QPushButton *m_pushButtonForceDefaultIdSuggestion;
+ QPushButton *m_pushButtonIdSuggestions;
+ QPopupMenu *m_menuIdSuggestions;
+ QMap<int, QString> m_idToSuggestion;
+ QCheckBox *m_checkBoxEnableAll;
+ QPushButton *m_pushButtonRefetch;
+ QListView *m_listViewWarnings;
+ QTabWidget *m_tabWidget;
+ KBibTeX::EntryWidgetSource *m_sourcePage;
+ QValueList<KBibTeX::EntryWidgetTab*> m_internalEntryWidgets;
+ QWidget *m_lastPage;
+ QTimer *m_updateWarningsTimer;
+ QDialog *m_dlgParent;
+ WebQueryArXiv *m_wqa;
+ QString m_oldId;
+
+ void setupGUI( QWidget *parent, bool showWarnings = TRUE );
+ void addTabWidgets();
+ void addTabWidget( EntryWidgetTab *widget, const QString& title );
+ void setupEntryTypes();
+ void updateGUI();
+ void internalApply( BibTeX::Entry *entry );
+ void internalReset( BibTeX::Entry *entry );
+ void restoreWindowSize( KConfig *config );
+ void saveWindowSize( KConfig *config ) const;
+ };
+
+ class EntryWidgetDialog: public KDialogBase
+ {
+ Q_OBJECT
+ public:
+ EntryWidgetDialog( QWidget *parent = 0, const char *name = 0, bool modal = true, const QString &caption = QString::null, int buttonMask = Ok | Apply | Cancel ) : KDialogBase( parent, name, modal, caption, buttonMask ) {/* nothing */};
+ ~EntryWidgetDialog() {/* nothing */};
+ void setMainWidget( EntryWidget *widget )
+ {
+ KDialogBase::setMainWidget( widget );
+ m_widget = widget;
+ };
+
+ protected:
+ void closeEvent( QCloseEvent * e )
+ {
+ if ( m_widget->queryClose() ) e->accept();
+ else e->ignore();
+ }
+
+ protected slots:
+ void slotCancel()
+ {
+ if ( m_widget->queryClose() ) QDialog::done( Cancel );
+ }
+
+ void slotClose()
+ {
+ if ( m_widget->queryClose() ) QDialog::done( Cancel );
+ }
+
+ private:
+ EntryWidget *m_widget;
+ };
+
+}
+
+#endif