diff options
author | Slávek Banko <[email protected]> | 2013-06-24 02:08:15 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2013-07-04 02:44:37 +0200 |
commit | 998f21e02a725cd553d7c278819f67cd81295af4 (patch) | |
tree | 4bd158018e9302c31367b00c01cd2b41eb228414 /src/idsuggestionswidget.h | |
download | kbibtex-998f21e02a725cd553d7c278819f67cd81295af4.tar.gz kbibtex-998f21e02a725cd553d7c278819f67cd81295af4.zip |
Initial import
Diffstat (limited to 'src/idsuggestionswidget.h')
-rw-r--r-- | src/idsuggestionswidget.h | 163 |
1 files changed, 163 insertions, 0 deletions
diff --git a/src/idsuggestionswidget.h b/src/idsuggestionswidget.h new file mode 100644 index 0000000..103029c --- /dev/null +++ b/src/idsuggestionswidget.h @@ -0,0 +1,163 @@ +/*************************************************************************** + * Copyright (C) 2004-2009 by Thomas Fischer * + * [email protected] * + * * + * 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 KBIBTEXIDSUGGESTIONSWIDGET_H +#define KBIBTEXIDSUGGESTIONSWIDGET_H + +#include <qwidget.h> +#include <qdialog.h> + +class QCheckBox; +class QScrollView; +class QSpinBox; +class KComboBox; +class KLineEdit; +class KPushButton; + +namespace KBibTeX +{ + class IdSuggestionComponent: public QFrame + { + Q_OBJECT + public: + IdSuggestionComponent( const QString& title, QWidget *parent ); + virtual QString text() const = 0; + void setEnableUpDown( bool enableUp, bool enableDown ); + + signals: + void modified(); + void moved(); + void deleted(); + + protected: + QWidget *moveWidgets( QWidget *parent ); + + bool m_toBeDeleted; + QString m_title; + QWidget *m_parent; + KPushButton *m_pushButtonDel; + KPushButton *m_pushButtonUp; + KPushButton *m_pushButtonDown; + + protected slots: + void slotUp(); + void slotDown(); + void slotDelete(); + }; + + class IdSuggestionComponentAuthor: public IdSuggestionComponent + { + public: + IdSuggestionComponentAuthor( const QString &text, QWidget *parent ); + QString text() const; + protected: + KComboBox *m_comboBoxWhichAuthors; + KComboBox *m_comboBoxCasing; + KLineEdit *m_lineEditInBetween; + QSpinBox *m_spinBoxLen; + }; + + class IdSuggestionComponentTitle: public IdSuggestionComponent + { + public: + IdSuggestionComponentTitle( const QString &text, QWidget *parent ); + QString text() const; + protected: + QCheckBox *m_checkBoxRemoveSmallWords; + KComboBox *m_comboBoxCasing; + KLineEdit *m_lineEditInBetween; + QSpinBox *m_spinBoxLen; + }; + + class IdSuggestionComponentYear: public IdSuggestionComponent + { + public: + IdSuggestionComponentYear( const QString &text, QWidget *parent ); + QString text() const; + protected: + KComboBox *m_comboBoxDigits; + }; + + class IdSuggestionComponentText: public IdSuggestionComponent + { + public: + IdSuggestionComponentText( const QString &text, QWidget *parent ); + QString text() const; + protected: + KLineEdit *m_lineEditInBetween; + }; + + class IdSuggestionsScrollView : public QScrollView + { + Q_OBJECT + public: + IdSuggestionsScrollView( QWidget *parent, const char*name = NULL ); + ~IdSuggestionsScrollView(); + + void setMainWidget( QWidget *widget ) {m_widget = widget;} + + protected: + void viewportResizeEvent( QResizeEvent * ); + + private: + QWidget *m_widget; + }; + + /** + @author Thomas Fischer <[email protected]> + */ + class IdSuggestionsWidget : public QWidget + { + Q_OBJECT + public: + ~IdSuggestionsWidget(); + int numComponents(); + + static QDialog::DialogCode execute( QString &formatStr, QWidget *parent = 0, const char *name = 0 ); + + protected: + IdSuggestionsWidget( const QString &formatStr, KDialogBase *parent, const char *name = 0 ); + + QString m_originalFormatStr; + int m_componentCount; + + void reset( const QString& formatStr ); + void apply( QString& formatStr ); + + private: + static QString exampleBibTeXEntry; + BibTeX::Entry *m_example; + IdSuggestionsScrollView *m_scrollViewComponents; + QLabel *m_labelExample; + QWidget *m_listOfComponents; + KPushButton *m_pushButtonAdd; + KDialogBase *m_parent; + + void setupGUI(); + + private slots: + void addMenuActivated( int id ); + void updateGUI(); + void componentDeleted(); + void updateExample(); + }; + +} + +#endif |