summaryrefslogtreecommitdiff
path: root/src/mainwindow.h
blob: d4c4c5b9a775b6c919eeca29b8bb5ec0eb167b25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/***************************************************************************
 *            mainwindow.h
 *
 *  Sat Aug 21 19:50:13 2004
 *  Copyright  2004  deva
 *  deva@aasimon.org
 ****************************************************************************/

/*
 *    This file is part of MIaV.
 *
 *    MIaV 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.
 *
 *    MIaV 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 MIaV; if not, write to the Free Software
 *    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.
 */

/*
 * $Id$
 */

/*
 * $Log$
 * Revision 1.16  2005/06/16 21:28:57  deva
 * Rewrote thread object
 * Fixed bug in mov_encoder (pushed read_sem too many times, whihc lead to
 * growing server queue)
 *
 * Revision 1.15  2005/06/02 20:45:01  deva
 *
 * Added clear button
 * Optimized the frame handling a little (very little!).
 *
 * Revision 1.14  2005/05/23 19:30:36  deva
 * Made some cleanup in the status bar.
 *
 * Revision 1.13  2005/05/16 16:00:57  deva
 *
 * Lots of stuff!
 *
 * Revision 1.12  2005/05/03 09:22:12  deva
 * Implemented the gui part of the info object.
 *
 * Revision 1.11  2005/05/03 08:31:59  deva
 * Removed the error object, and replaced it with a more generic info object.
 *
 * Revision 1.10  2005/05/02 20:34:38  deva
 *
 * Some hacked borky ugly scumm code to check for errors! :(
 *
 * Revision 1.9  2005/05/02 19:56:17  deva
 *
 * cpr_clicked is now blocked, if a recording session on. A messagebox explains
 * how to stop before trying to change the cpr number again.
 *
 * Revision 1.8  2005/05/01 09:56:26  deva
 * Added Id and Log tags to all files
 */

#include <config.h>
#ifdef USE_GUI
 
#ifndef __MAINWINDOW_H__
#define __MAINWINDOW_H__

#include <string>
using namespace std;

#include <qwidget.h>
#include <qlabel.h>
#include <qpushbutton.h>
#include <qstatusbar.h>
#include <qtimer.h>
#include <qpixmap.h>
#include <qimage.h>

#include "videowidget.h"
#include "camera.h"
#include "cprquerydialog.h"

#include "info_gui.h"

#define NUM_HISTORY 3

/** 
 * Textstrings
 */
#define TXT_ERROR_TITLE "Der er opstået en fejl!"
#define TXT_READY "Klar..."
#define TXT_CPRDLG_TITLE "CPRQueryDialog"
#define TXT_ASK_SAVE_TITLE "Vil du gemme filmen?"
#define TXT_ASK_SAVE "Vil du gemme filmen permanent?"
#define TXT_STOP_RECORDING_TITLE "Stop optagelsen"
#define TXT_STOP_RECORDING "Optagelsen skal standses, inden et nyt cpr nummer kan indtastes.\n\
Optagelsen standses ved tryk på den røde cirkel med gul streg over."
#define TXT_TIME "Tid:"
#define TXT_QUEUELENGTH "Buffer størelse:"
#define TXT_ASK_CLEAR_SCREEN_TITLE "Fjerne data fra skærmen?"
#define TXT_ASK_CLEAR_SCREEN "Er du sikker på at du vil dataene fra skærmen (billeder, CPR nummer og navn)?"
   
/** 
 * Images
 */
#define PIXMAP_RECORD     PIXMAPS"/record.png"
#define PIXMAP_STOP       PIXMAPS"/stop.png"

#define PIXMAP_FREEZE     PIXMAPS"/freeze.png"
#define PIXMAP_UNFREEZE   PIXMAPS"/unfreeze.png"

#define PIXMAP_CPR        PIXMAPS"/cpr.png"
#define PIXMAP_CLEAR      PIXMAPS"/clear.png"

#define PIXMAP_SNAPSHOT   PIXMAPS"/snapshot.png"
#define PIXMAP_DUMMY      PIXMAPS"/dummy.png"
#define PIXMAP_LOGO_SMALL PIXMAPS"/miav_small.png"

class MainWindow : public QWidget
{
  Q_OBJECT
public:
  MainWindow(QApplication *qApp, QWidget* parent = 0, const char* name = 0);
  ~MainWindow();
  
  void message(char* msg);

public slots:
  void cpr_clicked();
  void clear_clicked();
  void rec_clicked();
  void shoot_clicked();
  void freeze_clicked();
  void redraw_edge();
  void taskbar_update();
 
private:
  void clear();

  Info *info;

  void createGui();
  
  Camera *camera;
  Info *cam_info;

  QPixmap *pix_unfreeze;
  QPixmap *pix_freeze;
  QPixmap *pix_snapshot;
  QPixmap *pix_cpr;
  QPixmap *pix_clear;
  QPixmap *pix_record;
  QPixmap *pix_stop;
  QPixmap *pix_logo;

  QImage *pix_dummy;
  
  QLabel *lbl_version;
  QLabel *lbl_cpr;
  QLabel *lbl_name;
  QLabel *lbl_recordtime;

  QTimer *taskbartimer;

  // Used for the check_for_error_once_per_2_seconds (very ugly)
  QTimer *errtimer;

  float rec_edge_counter;
  QTimer *timer;
  QLabel *img_recedge;
  QLabel *img_history[NUM_HISTORY];
  
  QPushButton *btn_logo;
  QPushButton *btn_clear;
  QPushButton *btn_cpr;
  QPushButton *btn_rec;
  QPushButton *btn_shoot;
  QPushButton *btn_freeze;

  QStatusBar *status;
  
  VideoWidget *img_live;
  
  bool recording;
  bool frozen;

  // Configuration values
  float unit;
  int video_width;
  int video_height;

  QPushButton *createButton(char *caption, int width, int height);
  QLabel *createLabel(char *caption, int width, int height);
};

#endif

#endif /*USE_GUI*/