BiblioteQ
biblioteq_photographcollection.h
1 /*
2 ** Copyright (c) 2006 - present, Alexis Megas.
3 ** All rights reserved.
4 **
5 ** Redistribution and use in source and binary forms, with or without
6 ** modification, are permitted provided that the following conditions
7 ** are met:
8 ** 1. Redistributions of source code must retain the above copyright
9 ** notice, this list of conditions and the following disclaimer.
10 ** 2. Redistributions in binary form must reproduce the above copyright
11 ** notice, this list of conditions and the following disclaimer in the
12 ** documentation and/or other materials provided with the distribution.
13 ** 3. The name of the author may not be used to endorse or promote products
14 ** derived from BiblioteQ without specific prior written permission.
15 **
16 ** BIBLIOTEQ IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 ** IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 ** OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 ** IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 ** INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 ** NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 ** BIBLIOTEQ, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27 
28 #ifndef _BIBLIOTEQ_PHOTOGRAPHCOLLECTION_H_
29 #define _BIBLIOTEQ_PHOTOGRAPHCOLLECTION_H_
30 
31 #include "biblioteq_item.h"
32 #include "ui_biblioteq_photograph.h"
33 #include "ui_biblioteq_photographinfo.h"
34 
35 class QTextBrowser;
37 
38 class biblioteq_photographcollection: public QMainWindow, public biblioteq_item
39 {
40  Q_OBJECT
41 
42  public:
44  const QString &oidArg,
45  const QModelIndex &index);
47  void duplicate(const QString &p_oid, const int state);
48  void insert(void);
49  void modify(const int state, const QString &behavior = "");
50  void search(const QString &field = "", const QString &value = "");
51 
52  void setPublicationDateFormat(const QString &dateFormat)
53  {
54  pc.publication_date->setDisplayFormat(dateFormat);
55  }
56 
57  void updateWindow(const int state);
58 
59  private:
60  QDialog *m_photo_diag;
61  QString m_engWindowTitle;
62  QString m_itemOid;
63  Ui_pcDialog pc;
64  Ui_photographDialog photo;
65  biblioteq_bgraphicsscene *m_scene;
66  bool verifyItemFields(void);
67  int photographsPerPage(void);
68  void changeEvent(QEvent *event);
69  void closeEvent(QCloseEvent *event);
70  void loadPhotographFromItem(QGraphicsPixmapItem *item,
71  QGraphicsScene *scene,
72  QTextBrowser *text,
73  const int percent);
74  void loadPhotographFromItemInNewWindow(QGraphicsPixmapItem *item);
75  void setReadOnlyFieldsOverride(void);
76  void setSceneRect(const qint64 size);
77  void showPhotographs(const int page);
78  void storeData(void);
79  void updateTablePhotographCount(const qint64 count);
80 
81  private slots:
82  void setGlobalFonts(const QFont &font);
83  void slotAddItem(void);
84  void slotCancel(void);
85  void slotClosePhoto(void);
86  void slotDeleteItem(void);
87  void slotExportItem(void);
88  void slotExportPhotographs(void);
89  void slotGo(void);
90  void slotImageViewSizeChanged(int index);
91  void slotImportItems(void);
92  void slotInsertItem(void);
93  void slotModifyItem(void);
94  void slotPageChanged(int index);
95  void slotPrepareIcons(void);
96  void slotPrint(void);
97  void slotQuery(void);
98  void slotReset(void);
99  void slotSaveRotatedImage(const QImage &image,
100  const QString &format,
101  const qint64 oid);
102  void slotSceneSelectionChanged(void);
103  void slotSelectAll(void);
104  void slotSelectImage(void);
105  void slotUpdateItem(void);
106  void slotViewContextMenu(const QPoint &pos);
107  void slotViewNextPhotograph(void);
108  void slotViewPhotograph(void);
109  void slotViewPreviousPhotograph(void);
110 };
111 
112 #endif
Definition: biblioteq_bgraphicsscene.h:34
Definition: biblioteq_item.h:72
Definition: biblioteq_photographcollection.h:39
Definition: biblioteq.h:276