summaryrefslogtreecommitdiff
authormickeyl <mickeyl>2003-04-01 22:18:03 (UTC)
committer mickeyl <mickeyl>2003-04-01 22:18:03 (UTC)
commita46668f70b74f27689afb956ff085d42c0775328 (patch) (unidiff)
tree24e1477b919aa4453d8724512ed7dd9659d040dc
parent76b83c2b77e626fadf1d1bbbfd19a9a8a795334b (diff)
downloadopie-a46668f70b74f27689afb956ff085d42c0775328.zip
opie-a46668f70b74f27689afb956ff085d42c0775328.tar.gz
opie-a46668f70b74f27689afb956ff085d42c0775328.tar.bz2
- backgammon: g++3 fix
- add skeleton for opie-camera application
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--apps/Applications/camera.desktop10
-rw-r--r--noncore/games/backgammon/moveengine.cpp2
-rw-r--r--noncore/multimedia/camera/.cvsignore1
-rw-r--r--noncore/multimedia/camera/camera.pro21
-rw-r--r--noncore/multimedia/camera/config.in7
-rw-r--r--noncore/multimedia/camera/main.cpp28
-rw-r--r--noncore/multimedia/camera/mainwindow.cpp50
-rw-r--r--noncore/multimedia/camera/mainwindow.h40
-rw-r--r--noncore/multimedia/camera/zcameraio.cpp56
-rw-r--r--noncore/multimedia/camera/zcameraio.h35
-rw-r--r--packages1
-rwxr-xr-xpics/camera/cam.pngbin0 -> 2567 bytes
12 files changed, 251 insertions, 0 deletions
diff --git a/apps/Applications/camera.desktop b/apps/Applications/camera.desktop
new file mode 100644
index 0000000..26cc119
--- a/dev/null
+++ b/apps/Applications/camera.desktop
@@ -0,0 +1,10 @@
1[Desktop Entry]
2Comment = A Camera Program
3Comment[de] = Ein Kamera-Programm
4Exec = opiecam
5File = opiecam
6Icon = camera/cam
7Name = OpieCam
8Type = Application
9Name[de]= Kamera
10
diff --git a/noncore/games/backgammon/moveengine.cpp b/noncore/games/backgammon/moveengine.cpp
index 009c449..8106b3f 100644
--- a/noncore/games/backgammon/moveengine.cpp
+++ b/noncore/games/backgammon/moveengine.cpp
@@ -1,262 +1,264 @@
1#include "moveengine.h" 1#include "moveengine.h"
2 2
3#include <qmessagebox.h> 3#include <qmessagebox.h>
4 4
5#include <qtimer.h> 5#include <qtimer.h>
6 6
7#include <stdlib.h>
8
7MoveEngine::MoveEngine() 9MoveEngine::MoveEngine()
8 : QObject() 10 : QObject()
9{ 11{
10 int offset=7; 12 int offset=7;
11 int a=0; //counter variable 13 int a=0; //counter variable
12 int xfill[]={210,185,170,155,140,125,110,85,70,55,40,25,10,10,25,40,55,70,85,110,125,140,155,170,185,210}; 14 int xfill[]={210,185,170,155,140,125,110,85,70,55,40,25,10,10,25,40,55,70,85,110,125,140,155,170,185,210};
13 for(a=0;a<26;a++) 15 for(a=0;a<26;a++)
14 { 16 {
15 x_coord[a]=xfill[a]; 17 x_coord[a]=xfill[a];
16 } 18 }
17 19
18 int yfill[]={10,25,40,55,70,10+offset,25+offset,40+offset,55+offset,25,40,55, 25+offset,40+offset,40}; 20 int yfill[]={10,25,40,55,70,10+offset,25+offset,40+offset,55+offset,25,40,55, 25+offset,40+offset,40};
19 int zfill[]={1,1,1,1,1,2,2,2,2,3,3,3,4,4,5}; 21 int zfill[]={1,1,1,1,1,2,2,2,2,3,3,3,4,4,5};
20 for(a=0;a<15;a++) 22 for(a=0;a<15;a++)
21 { 23 {
22 yup_coord[a]=yfill[a]; 24 yup_coord[a]=yfill[a];
23 ylow_coord[a]=185-(yfill[a]); 25 ylow_coord[a]=185-(yfill[a]);
24 z_coord[a]=zfill[a]; 26 z_coord[a]=zfill[a];
25 } 27 }
26 for(a=0;a<5;a++) 28 for(a=0;a<5;a++)
27 { 29 {
28 if(a<3) 30 if(a<3)
29 { 31 {
30 x_fin1[a]=65+a*15; 32 x_fin1[a]=65+a*15;
31 x_fin2[a]=155-a*15; 33 x_fin2[a]=155-a*15;
32 } 34 }
33 y_fin[a]=225-a*5; 35 y_fin[a]=225-a*5;
34 } 36 }
35 z_fin=1; 37 z_fin=1;
36 38
37 reset(); 39 reset();
38} 40}
39 41
40MoveEngine::~MoveEngine() 42MoveEngine::~MoveEngine()
41{} 43{}
42 44
43void MoveEngine::position(Pieces& pieces,bool non_qte) 45void MoveEngine::position(Pieces& pieces,bool non_qte)
44{ 46{
45 int player1_counter=0; 47 int player1_counter=0;
46 int player2_counter=0; 48 int player2_counter=0;
47 49
48 //non qte styles are smaller !! 50 //non qte styles are smaller !!
49 int offset=(non_qte) ? 5 : 0; 51 int offset=(non_qte) ? 5 : 0;
50 52
51 for(int a=0;a<28;a++) 53 for(int a=0;a<28;a++)
52 { 54 {
53 for(int b=0;b<abs(population[a].total);b++) 55 for(int b=0;b<abs(population[a].total);b++)
54 { 56 {
55 if(population[a].total>0) //player 1 pieces 57 if(population[a].total>0) //player 1 pieces
56 { 58 {
57 pieces.player1[player1_counter].x=x_coord[a]-offset; 59 pieces.player1[player1_counter].x=x_coord[a]-offset;
58 if(a>=0 && a<13) 60 if(a>=0 && a<13)
59 { 61 {
60 pieces.player1[player1_counter].y=yup_coord[b]-offset; 62 pieces.player1[player1_counter].y=yup_coord[b]-offset;
61 pieces.player1[player1_counter].z=z_coord[b]; 63 pieces.player1[player1_counter].z=z_coord[b];
62 pieces.player1[player1_counter].side=false; 64 pieces.player1[player1_counter].side=false;
63 player1_counter++; 65 player1_counter++;
64 } 66 }
65 else if(a>12 && a<26) 67 else if(a>12 && a<26)
66 { 68 {
67 pieces.player1[player1_counter].y=ylow_coord[b]-offset; 69 pieces.player1[player1_counter].y=ylow_coord[b]-offset;
68 pieces.player1[player1_counter].z=z_coord[b]; 70 pieces.player1[player1_counter].z=z_coord[b];
69 pieces.player1[player1_counter].side=false; 71 pieces.player1[player1_counter].side=false;
70 player1_counter++; 72 player1_counter++;
71 } 73 }
72 else if(a==26) 74 else if(a==26)
73 { 75 {
74 if(b<5) 76 if(b<5)
75 { 77 {
76 pieces.player1[player1_counter].x=x_fin1[0]-offset; 78 pieces.player1[player1_counter].x=x_fin1[0]-offset;
77 pieces.player1[player1_counter].y=y_fin[b]-offset; 79 pieces.player1[player1_counter].y=y_fin[b]-offset;
78 pieces.player1[player1_counter].z=z_fin; 80 pieces.player1[player1_counter].z=z_fin;
79 } 81 }
80 else if(b>=5 && b<10) 82 else if(b>=5 && b<10)
81 { 83 {
82 pieces.player1[player1_counter].x=x_fin1[1]-offset; 84 pieces.player1[player1_counter].x=x_fin1[1]-offset;
83 pieces.player1[player1_counter].y=y_fin[b-5]-offset; 85 pieces.player1[player1_counter].y=y_fin[b-5]-offset;
84 pieces.player1[player1_counter].z=z_fin; 86 pieces.player1[player1_counter].z=z_fin;
85 } 87 }
86 else 88 else
87 { 89 {
88 pieces.player1[player1_counter].x=x_fin1[2]-offset; 90 pieces.player1[player1_counter].x=x_fin1[2]-offset;
89 pieces.player1[player1_counter].y=y_fin[b-10]-offset; 91 pieces.player1[player1_counter].y=y_fin[b-10]-offset;
90 pieces.player1[player1_counter].z=z_fin; 92 pieces.player1[player1_counter].z=z_fin;
91 } 93 }
92 pieces.player1[player1_counter].side=true; 94 pieces.player1[player1_counter].side=true;
93 player1_counter++; 95 player1_counter++;
94 96
95 } 97 }
96 } 98 }
97 99
98 else if(population[a].total<0) //player 2 pieces 100 else if(population[a].total<0) //player 2 pieces
99 { 101 {
100 pieces.player2[player2_counter].x=x_coord[a]-offset; 102 pieces.player2[player2_counter].x=x_coord[a]-offset;
101 if(a>=0 && a<13) 103 if(a>=0 && a<13)
102 { 104 {
103 pieces.player2[player2_counter].y=yup_coord[b]-offset; 105 pieces.player2[player2_counter].y=yup_coord[b]-offset;
104 pieces.player2[player2_counter].z=z_coord[b]; 106 pieces.player2[player2_counter].z=z_coord[b];
105 pieces.player2[player2_counter].side=false; 107 pieces.player2[player2_counter].side=false;
106 player2_counter++; 108 player2_counter++;
107 } 109 }
108 else if(a>12 && a<26) 110 else if(a>12 && a<26)
109 { 111 {
110 pieces.player2[player2_counter].y=ylow_coord[b]-offset; 112 pieces.player2[player2_counter].y=ylow_coord[b]-offset;
111 pieces.player2[player2_counter].z=z_coord[b]; 113 pieces.player2[player2_counter].z=z_coord[b];
112 pieces.player2[player2_counter].side=false; 114 pieces.player2[player2_counter].side=false;
113 player2_counter++; 115 player2_counter++;
114 } 116 }
115 else if(a==27) 117 else if(a==27)
116 { 118 {
117 if(b<5) 119 if(b<5)
118 { 120 {
119 pieces.player2[player2_counter].x=x_fin2[0]-offset; 121 pieces.player2[player2_counter].x=x_fin2[0]-offset;
120 pieces.player2[player2_counter].y=y_fin[b]-offset; 122 pieces.player2[player2_counter].y=y_fin[b]-offset;
121 pieces.player2[player2_counter].z=z_fin; 123 pieces.player2[player2_counter].z=z_fin;
122 } 124 }
123 else if(b>=5 && b<10) 125 else if(b>=5 && b<10)
124 { 126 {
125 pieces.player2[player2_counter].x=x_fin2[1]-offset; 127 pieces.player2[player2_counter].x=x_fin2[1]-offset;
126 pieces.player2[player2_counter].y=y_fin[b-5]-offset; 128 pieces.player2[player2_counter].y=y_fin[b-5]-offset;
127 pieces.player2[player2_counter].z=z_fin; 129 pieces.player2[player2_counter].z=z_fin;
128 } 130 }
129 else 131 else
130 { 132 {
131 pieces.player2[player2_counter].x=x_fin2[2]-offset; 133 pieces.player2[player2_counter].x=x_fin2[2]-offset;
132 pieces.player2[player2_counter].y=y_fin[b-10]-offset; 134 pieces.player2[player2_counter].y=y_fin[b-10]-offset;
133 pieces.player2[player2_counter].z=z_fin; 135 pieces.player2[player2_counter].z=z_fin;
134 } 136 }
135 pieces.player2[player2_counter].side=true; 137 pieces.player2[player2_counter].side=true;
136 player2_counter++; 138 player2_counter++;
137 139
138 } 140 }
139 } 141 }
140 } 142 }
141 } 143 }
142} 144}
143 145
144void MoveEngine::diceroll(const int& newplayer,const int& face1,const int& face2,const int& face3,const int& face4,bool computer) 146void MoveEngine::diceroll(const int& newplayer,const int& face1,const int& face2,const int& face3,const int& face4,bool computer)
145{ 147{
146 checkstate(); 148 checkstate();
147 player=newplayer; 149 player=newplayer;
148 otherplayer=(player==1) ? 2 : 1; 150 otherplayer=(player==1) ? 2 : 1;
149 dice[0]=face1; 151 dice[0]=face1;
150 dice[1]=face2; 152 dice[1]=face2;
151 dice[2]=face3; 153 dice[2]=face3;
152 dice[3]=face4; 154 dice[3]=face4;
153 marker_current=-1; 155 marker_current=-1;
154 if(getPossibleMoves()==0) 156 if(getPossibleMoves()==0)
155 { 157 {
156 emit nomove(); 158 emit nomove();
157 return; // player will be changed 159 return; // player will be changed
158 } 160 }
159 if(!computer) 161 if(!computer)
160 return; //human intervention required 162 return; //human intervention required
161 163
162 QTimer::singleShot(2000,this,SLOT(automove())); 164 QTimer::singleShot(2000,this,SLOT(automove()));
163} 165}
164 166
165 167
166void MoveEngine::automove() 168void MoveEngine::automove()
167{ 169{
168 //the maximimum possibility 170 //the maximimum possibility
169 int maxpos=0; 171 int maxpos=0;
170 //the position in the moves array 172 //the position in the moves array
171 int from=-1; 173 int from=-1;
172 int to=-1; 174 int to=-1;
173 //dice1 or dice 2 ?? 175 //dice1 or dice 2 ??
174 int index_dice=0; 176 int index_dice=0;
175 for(int counter=0;counter<26;counter++) 177 for(int counter=0;counter<26;counter++)
176 { 178 {
177 int a=(player==1) ? counter : 25-counter; 179 int a=(player==1) ? counter : 25-counter;
178 for(int b=0;b<4;b++) 180 for(int b=0;b<4;b++)
179 { 181 {
180 if(moves[a].weight[b]>maxpos) 182 if(moves[a].weight[b]>maxpos)
181 { 183 {
182 maxpos=moves[a].weight[b]; 184 maxpos=moves[a].weight[b];
183 from=a; 185 from=a;
184 to=moves[a].to[b]; 186 to=moves[a].to[b];
185 index_dice=b+1; 187 index_dice=b+1;
186 } 188 }
187 } 189 }
188 } 190 }
189 move(from,to,index_dice); 191 move(from,to,index_dice);
190} 192}
191 193
192 194
193void MoveEngine::boardpressed(const int& x,const int& y,Marker& marker,bool non_qte) 195void MoveEngine::boardpressed(const int& x,const int& y,Marker& marker,bool non_qte)
194{ 196{
195 //get the position of the mouse click 197 //get the position of the mouse click
196 bool upper=true; 198 bool upper=true;
197 bool found=false; 199 bool found=false;
198 200
199 int offset=(non_qte) ? 5 : 0; 201 int offset=(non_qte) ? 5 : 0;
200 202
201 if(y<=85) // board slots 0 to 12 203 if(y<=85) // board slots 0 to 12
202 marker.y_current=0; 204 marker.y_current=0;
203 else if(y>=105) //board slots 13 to 25 205 else if(y>=105) //board slots 13 to 25
204 { 206 {
205 marker.y_current=195-2*offset; 207 marker.y_current=195-2*offset;
206 upper=false; 208 upper=false;
207 } 209 }
208 210
209 int index=13; // the clicked board slot 211 int index=13; // the clicked board slot
210 212
211 while(index<25 && !found) 213 while(index<25 && !found)
212 { 214 {
213 if(x>=x_coord[index] && x<x_coord[index+1]) 215 if(x>=x_coord[index] && x<x_coord[index+1])
214 { 216 {
215 marker.x_current=x_coord[index]; 217 marker.x_current=x_coord[index];
216 found=true; 218 found=true;
217 ; 219 ;
218 } 220 }
219 else 221 else
220 { 222 {
221 index++; 223 index++;
222 } 224 }
223 } 225 }
224 if(!found) 226 if(!found)
225 { 227 {
226 marker.x_current=x_coord[25]; 228 marker.x_current=x_coord[25];
227 index=25; 229 index=25;
228 } 230 }
229 if(upper) 231 if(upper)
230 { 232 {
231 index=25-index; 233 index=25-index;
232 } 234 }
233 235
234 int a=0; 236 int a=0;
235 int usedice=-1; 237 int usedice=-1;
236 int dice_value=7; 238 int dice_value=7;
237 for(a=0;a<4;a++) 239 for(a=0;a<4;a++)
238 { 240 {
239 if(index==marker_next[a] && marker_next[a]!=-1 && dice_value>dice[a]) 241 if(index==marker_next[a] && marker_next[a]!=-1 && dice_value>dice[a])
240 { 242 {
241 usedice=a; 243 usedice=a;
242 dice_value=dice[0]; 244 dice_value=dice[0];
243 } 245 }
244 } 246 }
245 if(usedice!=-1) 247 if(usedice!=-1)
246 { 248 {
247 move(marker_current,marker_next[usedice],usedice+1); 249 move(marker_current,marker_next[usedice],usedice+1);
248 nomarker(marker); 250 nomarker(marker);
249 return; 251 return;
250 252
251 } 253 }
252 254
253 255
254 if(dice[0]==7 && dice[1]==7 && dice[2]==7 && dice[3]==7) //no dice rolled 256 if(dice[0]==7 && dice[1]==7 && dice[2]==7 && dice[3]==7) //no dice rolled
255 { 257 {
256 nomarker(marker); 258 nomarker(marker);
257 return; 259 return;
258 } 260 }
259 else if(fieldColor(index)==player) 261 else if(fieldColor(index)==player)
260 { 262 {
261 marker.visible_current=true; 263 marker.visible_current=true;
262 marker_current=index; 264 marker_current=index;
diff --git a/noncore/multimedia/camera/.cvsignore b/noncore/multimedia/camera/.cvsignore
new file mode 100644
index 0000000..6d678c6
--- a/dev/null
+++ b/noncore/multimedia/camera/.cvsignore
@@ -0,0 +1 @@
config.in
diff --git a/noncore/multimedia/camera/camera.pro b/noncore/multimedia/camera/camera.pro
new file mode 100644
index 0000000..e937807
--- a/dev/null
+++ b/noncore/multimedia/camera/camera.pro
@@ -0,0 +1,21 @@
1MOC_DIR = ./moc
2OBJECTS_DIR = ./obj
3DESTDIR = $(OPIEDIR)/bin
4TEMPLATE = app
5CONFIG = qt warn_on debug
6
7HEADERS = zcameraio.h \
8 mainwindow.h
9
10SOURCES = zcameraio.cpp \
11 mainwindow.cpp \
12 main.cpp
13
14INCLUDEPATH += $(OPIEDIR)/include
15DEPENDPATH += $(OPIEDIR)/include
16LIBS += -lqpe -lopiecore2
17INTERFACES =
18TARGET = opiecam
19
20include ( $(OPIEDIR)/include.pro )
21
diff --git a/noncore/multimedia/camera/config.in b/noncore/multimedia/camera/config.in
new file mode 100644
index 0000000..a4dd248
--- a/dev/null
+++ b/noncore/multimedia/camera/config.in
@@ -0,0 +1,7 @@
1 config CAMERA
2 boolean "opie-camera"
3 default "n"
4 depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE && LIBOPIE2CORE
5 comment "opie-camera needs a libqpe, libopie and libopie2core"
6 depends !(( LIBQPE || LIBQPE-X11 ) && LIBOPIE && LIBOPIE2CORE)
7
diff --git a/noncore/multimedia/camera/main.cpp b/noncore/multimedia/camera/main.cpp
new file mode 100644
index 0000000..f25475c
--- a/dev/null
+++ b/noncore/multimedia/camera/main.cpp
@@ -0,0 +1,28 @@
1/**********************************************************************
2** Copyright (C) 2003 Michael 'Mickey' Lauer. All rights reserved.
3**
4** This file is part of Opie Environment.
5**
6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file.
10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13**
14**********************************************************************/
15
16#include "mainwindow.h"
17#include <opie2/oapplication.h>
18
19int main( int argc, char **argv )
20{
21 OApplication a( argc, argv, "Opie-Camera" );
22 CameraMainWindow* w = new CameraMainWindow();
23 a.showMainWidget( w );
24 a.exec();
25 delete w;
26 return 0;
27}
28
diff --git a/noncore/multimedia/camera/mainwindow.cpp b/noncore/multimedia/camera/mainwindow.cpp
new file mode 100644
index 0000000..6431dfa
--- a/dev/null
+++ b/noncore/multimedia/camera/mainwindow.cpp
@@ -0,0 +1,50 @@
1/**********************************************************************
2** Copyright (C) 2002 Michael 'Mickey' Lauer. All rights reserved.
3**
4** This file is part of Opie Environment.
5**
6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file.
10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13**
14**********************************************************************/
15
16#include "mainwindow.h"
17
18#include <qvbox.h>
19#include <qpushbutton.h>
20#include <qlabel.h>
21
22#include <qpe/resource.h>
23#include <opie/ofiledialog.h>
24
25CameraMainWindow::CameraMainWindow( QWidget * parent, const char * name, WFlags f )
26 :QMainWindow( parent, name, f )
27{
28 QVBox* v = new QVBox( this );
29 QLabel* l = new QLabel( v );
30 l->setFixedSize( QSize( 240, 160 ) );
31 QPushButton* p = new QPushButton( "Snapshot", v );
32 connect( p, SIGNAL( clicked() ), this, SLOT( clickedSnapShot() ) );
33 v->show();
34 l->show();
35 p->show();
36 setCentralWidget( v );
37
38};
39
40
41CameraMainWindow::~CameraMainWindow()
42{
43}
44
45
46void CameraMainWindow::clickedSnapShot()
47{
48 qDebug( "Hello!" );
49}
50
diff --git a/noncore/multimedia/camera/mainwindow.h b/noncore/multimedia/camera/mainwindow.h
new file mode 100644
index 0000000..a349652
--- a/dev/null
+++ b/noncore/multimedia/camera/mainwindow.h
@@ -0,0 +1,40 @@
1/**********************************************************************
2** Copyright (C) 2003 Michael 'Mickey' Lauer. All rights reserved.
3**
4** This file is part of Opie Environment.
5**
6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file.
10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13**
14**********************************************************************/
15
16#ifndef MAINWINDOW_H
17#define MAINWINDOW_H
18
19#include <qmainwindow.h>
20
21class Wellenreiter;
22class WellenreiterConfigWindow;
23class QIconSet;
24class QToolButton;
25
26class CameraMainWindow: public QMainWindow
27{
28 Q_OBJECT
29
30 public:
31 CameraMainWindow( QWidget * parent = 0, const char * name = "mainwindow", WFlags f = 0 );
32 virtual ~CameraMainWindow();
33
34 protected:
35
36 public slots:
37 void clickedSnapShot();
38};
39
40#endif
diff --git a/noncore/multimedia/camera/zcameraio.cpp b/noncore/multimedia/camera/zcameraio.cpp
new file mode 100644
index 0000000..aa6cbe3
--- a/dev/null
+++ b/noncore/multimedia/camera/zcameraio.cpp
@@ -0,0 +1,56 @@
1/**********************************************************************
2** Copyright (C) 2002 Michael 'Mickey' Lauer. All rights reserved.
3**
4** This file is part of Opie Environment.
5**
6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file.
10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13**
14**********************************************************************/
15
16#include "zcameraio.h"
17
18#include <sys/types.h>
19#include <sys/stat.h>
20#include <errno.h>
21#include <string.h>
22#include <fcntl.h>
23#include <unistd.h>
24
25#include <qimage.h>
26
27#include <opie2/odebug.h>
28
29ZCameraIO::ZCameraIO()
30{
31 _driver = open( "/dev/sharp_zdc", O_RDWR );
32 if ( _driver == -1 )
33 oerr << "Can't open camera driver: " << strerror(errno) << oendl;
34
35};
36
37
38ZCameraIO::~ZCameraIO()
39{
40 if ( _driver != -1 )
41 close( _driver );
42}
43
44
45bool ZCameraIO::snapshot( QImage* img )
46{
47 char buf[76800];
48
49 write( _driver, "M=13", 4 );
50 write( _driver, "R=240,160,256,480", 17 );
51 write( _driver, "M=12", 4 );
52
53 int result = read( _driver, &buf, sizeof buf );
54
55 return result == sizeof buf;
56}
diff --git a/noncore/multimedia/camera/zcameraio.h b/noncore/multimedia/camera/zcameraio.h
new file mode 100644
index 0000000..817d3b4
--- a/dev/null
+++ b/noncore/multimedia/camera/zcameraio.h
@@ -0,0 +1,35 @@
1/**********************************************************************
2** Copyright (C) 2003 Michael 'Mickey' Lauer. All rights reserved.
3**
4** This file is part of Opie Environment.
5**
6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file.
10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13**
14**********************************************************************/
15
16#ifndef ZCAMERAIO_H
17#define ZCAMERAIO_H
18
19class QImage;
20
21class ZCameraIO
22{
23 public:
24 ZCameraIO();
25 virtual ~ZCameraIO();
26
27 bool isOpen() const { return _driver != -1; };
28
29 bool snapshot( QImage* );
30
31 private:
32 int _driver;
33};
34
35#endif
diff --git a/packages b/packages
index 5fdf5d2..0e4ae43 100644
--- a/packages
+++ b/packages
@@ -1,163 +1,164 @@
1 CONFIG_APPSKEY noncore/settings/appskeyappskey.pro 1 CONFIG_APPSKEY noncore/settings/appskeyappskey.pro
2 CONFIG_BACKGAMMONnoncore/games/backgammon/ backgammon.pro 2 CONFIG_BACKGAMMONnoncore/games/backgammon/ backgammon.pro
3 CONFIG_BINARY noncore/tools/calc2/binarybinary.pro 3 CONFIG_BINARY noncore/tools/calc2/binarybinary.pro
4 CONFIG_CALC2 noncore/tools/calc2calc2.pro 4 CONFIG_CALC2 noncore/tools/calc2calc2.pro
5 CONFIG_CALIBRATE core/apps/calibratecalibrate.pro 5 CONFIG_CALIBRATE core/apps/calibratecalibrate.pro
6 CONFIG_CAMERA noncore/multimedia/cameracamera.pro
6 CONFIG_DICTIONARY noncore/apps/dictionarydictionary.pro 7 CONFIG_DICTIONARY noncore/apps/dictionarydictionary.pro
7 CONFIG_EUROCONV noncore/tools/euroconv/ euroconv.pro 8 CONFIG_EUROCONV noncore/tools/euroconv/ euroconv.pro
8 CONFIG_GSMTOOL noncore/comm/gsmtoolgsmtool.pro 9 CONFIG_GSMTOOL noncore/comm/gsmtoolgsmtool.pro
9 CONFIG_KEYVIEW development/keyviewkeyview.pro 10 CONFIG_KEYVIEW development/keyviewkeyview.pro
10 CONFIG_LIBFFMPEG core/multimedia/opieplayer/libffmpeglibffmpeg.pro 11 CONFIG_LIBFFMPEG core/multimedia/opieplayer/libffmpeglibffmpeg.pro
11 CONFIG_LIBFLASH core/multimedia/opieplayer/libflashlibflash.pro 12 CONFIG_LIBFLASH core/multimedia/opieplayer/libflashlibflash.pro
12 CONFIG_LIBOPIE_PIM libopie/pimpim.pro 13 CONFIG_LIBOPIE_PIM libopie/pimpim.pro
13 CONFIG_LIBSQL libsqllibsql.pro 14 CONFIG_LIBSQL libsqllibsql.pro
14 CONFIG_MOBILEMSG noncore/comm/mobilemsgmobilemsg.pro 15 CONFIG_MOBILEMSG noncore/comm/mobilemsgmobilemsg.pro
15 CONFIG_OFILESELECTOR libopie/ofileselectorofileselector.pro 16 CONFIG_OFILESELECTOR libopie/ofileselectorofileselector.pro
16 CONFIG_OPIE-WRITE noncore/apps/opie-writeopie-write.pro 17 CONFIG_OPIE-WRITE noncore/apps/opie-writeopie-write.pro
17 CONFIG_QUICKEXEC quickexecquickexec.pro 18 CONFIG_QUICKEXEC quickexecquickexec.pro
18 CONFIG_RESTARTAPPLET core/applets/restartappletrestartapplet.pro 19 CONFIG_RESTARTAPPLET core/applets/restartappletrestartapplet.pro
19 CONFIG_RESTARTAPPLET2 core/applets/restartapplet2restartapplet2.pro 20 CONFIG_RESTARTAPPLET2 core/applets/restartapplet2restartapplet2.pro
20 CONFIG_SIMPLE noncore/tools/calc2/simplesimple.pro 21 CONFIG_SIMPLE noncore/tools/calc2/simplesimple.pro
21 CONFIG_TEST libsql/testtest.pro 22 CONFIG_TEST libsql/testtest.pro
22 CONFIG_TEST noncore/apps/opie-console/testtest.pro 23 CONFIG_TEST noncore/apps/opie-console/testtest.pro
23 CONFIG_UBROWSER noncore/net/ubrowserubrowser.pro 24 CONFIG_UBROWSER noncore/net/ubrowserubrowser.pro
24 CONFIG_WELLENREITER noncore/net/wellenreiterwellenreiter.pro 25 CONFIG_WELLENREITER noncore/net/wellenreiterwellenreiter.pro
25 CONFIG_ADDRESSBOOK core/pim/addressbookaddressbook.pro 26 CONFIG_ADDRESSBOOK core/pim/addressbookaddressbook.pro
26 CONFIG_ADVANCEDFM noncore/apps/advancedfmadvancedfm.pro 27 CONFIG_ADVANCEDFM noncore/apps/advancedfmadvancedfm.pro
27 CONFIG_APPEARANCE2 noncore/settings/appearance2appearance2.pro 28 CONFIG_APPEARANCE2 noncore/settings/appearance2appearance2.pro
28 CONFIG_OPIETOOTH-APPLET noncore/net/opietooth/appletapplet.pro 29 CONFIG_OPIETOOTH-APPLET noncore/net/opietooth/appletapplet.pro
29 CONFIG_AQPKG noncore/apps/aqpkgaqpkg.pro 30 CONFIG_AQPKG noncore/apps/aqpkgaqpkg.pro
30 CONFIG_BACKUP noncore/settings/backupbackup.pro 31 CONFIG_BACKUP noncore/settings/backupbackup.pro
31 CONFIG_BATTERYAPPLET core/applets/batteryappletbatteryapplet.pro 32 CONFIG_BATTERYAPPLET core/applets/batteryappletbatteryapplet.pro
32 CONFIG_BEND noncore/mail/bendbend.pro 33 CONFIG_BEND noncore/mail/bendbend.pro
33 CONFIG_BLUE-PIN noncore/net/opietooth/blue-pinblue-pin.pro 34 CONFIG_BLUE-PIN noncore/net/opietooth/blue-pinblue-pin.pro
34 CONFIG_BOUNCE noncore/games/bouncebounce.pro 35 CONFIG_BOUNCE noncore/games/bouncebounce.pro
35 CONFIG_BUTTON-SETTINGS core/settings/buttonbutton.pro 36 CONFIG_BUTTON-SETTINGS core/settings/buttonbutton.pro
36 CONFIG_BUZZWORD noncore/games/buzzwordbuzzword.pro 37 CONFIG_BUZZWORD noncore/games/buzzwordbuzzword.pro
37 CONFIG_CALCULATOR noncore/tools/calculatorcalculator.pro 38 CONFIG_CALCULATOR noncore/tools/calculatorcalculator.pro
38 CONFIG_CARDMON core/applets/cardmoncardmon.pro 39 CONFIG_CARDMON core/applets/cardmoncardmon.pro
39 CONFIG_CHECKBOOK noncore/apps/checkbookcheckbook.pro 40 CONFIG_CHECKBOOK noncore/apps/checkbookcheckbook.pro
40 CONFIG_CITYTIME core/settings/citytimecitytime.pro 41 CONFIG_CITYTIME core/settings/citytimecitytime.pro
41 CONFIG_CLIPBOARDAPPLET core/applets/clipboardappletclipboardapplet.pro 42 CONFIG_CLIPBOARDAPPLET core/applets/clipboardappletclipboardapplet.pro
42 CONFIG_CLOCK noncore/tools/clockclock.pro 43 CONFIG_CLOCK noncore/tools/clockclock.pro
43 CONFIG_CLOCKAPPLET core/applets/clockappletclockapplet.pro 44 CONFIG_CLOCKAPPLET core/applets/clockappletclockapplet.pro
44 CONFIG_CONFEDIT noncore/apps/confeditconfedit.pro 45 CONFIG_CONFEDIT noncore/apps/confeditconfedit.pro
45 CONFIG_DATEBOOK core/pim/datebookdatebook.pro 46 CONFIG_DATEBOOK core/pim/datebookdatebook.pro
46 CONFIG_DECO_FLAT noncore/decorations/flatflat.pro 47 CONFIG_DECO_FLAT noncore/decorations/flatflat.pro
47 CONFIG_DECO_LIQUID noncore/decorations/liquidliquid.pro 48 CONFIG_DECO_LIQUID noncore/decorations/liquidliquid.pro
48 CONFIG_DECO_POLISHED noncore/decorations/polishedpolished.pro 49 CONFIG_DECO_POLISHED noncore/decorations/polishedpolished.pro
49 CONFIG_DRAWPAD noncore/graphics/drawpaddrawpad.pro 50 CONFIG_DRAWPAD noncore/graphics/drawpaddrawpad.pro
50 CONFIG_DVORAK inputmethods/dvorakdvorak.pro 51 CONFIG_DVORAK inputmethods/dvorakdvorak.pro
51 CONFIG_EMBEDDEDKONSOLE core/apps/embeddedkonsoleembeddedkonsole.pro 52 CONFIG_EMBEDDEDKONSOLE core/apps/embeddedkonsoleembeddedkonsole.pro
52 CONFIG_FIFTEEN noncore/games/fifteenfifteen.pro 53 CONFIG_FIFTEEN noncore/games/fifteenfifteen.pro
53 CONFIG_FILEBROWSER core/apps/filebrowserfilebrowser.pro 54 CONFIG_FILEBROWSER core/apps/filebrowserfilebrowser.pro
54 CONFIG_FLAT noncore/styles/flatflat.pro 55 CONFIG_FLAT noncore/styles/flatflat.pro
55 CONFIG_FORMATTER noncore/tools/formatterformatter.pro 56 CONFIG_FORMATTER noncore/tools/formatterformatter.pro
56 CONFIG_FREETYPE freetypefreetype.pro 57 CONFIG_FREETYPE freetypefreetype.pro
57 CONFIG_FRESH noncore/styles/freshfresh.pro 58 CONFIG_FRESH noncore/styles/freshfresh.pro
58 CONFIG_FTPLIB noncore/net/ftplibftplib.pro 59 CONFIG_FTPLIB noncore/net/ftplibftplib.pro
59 CONFIG_GO noncore/games/gogo.pro 60 CONFIG_GO noncore/games/gogo.pro
60 CONFIG_HANDWRITING inputmethods/handwritinghandwriting.pro 61 CONFIG_HANDWRITING inputmethods/handwritinghandwriting.pro
61 CONFIG_HELPBROWSER core/apps/helpbrowserhelpbrowser.pro 62 CONFIG_HELPBROWSER core/apps/helpbrowserhelpbrowser.pro
62 CONFIG_HOMEAPPLET core/applets/homeapplethomeapplet.pro 63 CONFIG_HOMEAPPLET core/applets/homeapplethomeapplet.pro
63 CONFIG_INTERFACES noncore/net/networksettings/interfacesinterfaces.pro 64 CONFIG_INTERFACES noncore/net/networksettings/interfacesinterfaces.pro
64 CONFIG_IRDAAPPLET core/applets/irdaappletirdaapplet.pro 65 CONFIG_IRDAAPPLET core/applets/irdaappletirdaapplet.pro
65 CONFIG_JUMPX inputmethods/jumpxjumpx.pro 66 CONFIG_JUMPX inputmethods/jumpxjumpx.pro
66 CONFIG_KBILL noncore/games/kbillkbill.pro 67 CONFIG_KBILL noncore/games/kbillkbill.pro
67 CONFIG_KCHECKERS noncore/games/kcheckerskcheckers.pro 68 CONFIG_KCHECKERS noncore/games/kcheckerskcheckers.pro
68 CONFIG_KEYBOARD inputmethods/keyboardkeyboard.pro 69 CONFIG_KEYBOARD inputmethods/keyboardkeyboard.pro
69 CONFIG_KEYPEBBLE noncore/comm/keypebblekeypebble.pro 70 CONFIG_KEYPEBBLE noncore/comm/keypebblekeypebble.pro
70 CONFIG_KJUMPX inputmethods/kjumpxkjumpx.pro 71 CONFIG_KJUMPX inputmethods/kjumpxkjumpx.pro
71 CONFIG_KPACMAN noncore/games/kpacmankpacman.pro 72 CONFIG_KPACMAN noncore/games/kpacmankpacman.pro
72 CONFIG_LANGUAGE noncore/settings/languagelanguage.pro 73 CONFIG_LANGUAGE noncore/settings/languagelanguage.pro
73 CONFIG_LAUNCHER-SETTINGS core/settings/launcherlauncher.pro 74 CONFIG_LAUNCHER-SETTINGS core/settings/launcherlauncher.pro
74 CONFIG_LAUNCHER_CORE core/launcherlauncher.pro 75 CONFIG_LAUNCHER_CORE core/launcherlauncher.pro
75 CONFIG_LIBOPIETOOTH noncore/net/opietooth/liblib.pro 76 CONFIG_LIBOPIETOOTH noncore/net/opietooth/liblib.pro
76CONFIG_LIBKATE noncore/apps/tinykate/libkate libkate.pro 77CONFIG_LIBKATE noncore/apps/tinykate/libkate libkate.pro
77 CONFIG_LIBMAD core/multimedia/opieplayer/libmadlibmad.pro 78 CONFIG_LIBMAD core/multimedia/opieplayer/libmadlibmad.pro
78 CONFIG_LIBMAIL noncore/mail/libmaillibmail.pro 79 CONFIG_LIBMAIL noncore/mail/libmaillibmail.pro
79 CONFIG_LIBMPEG3 core/multimedia/opieplayer/libmpeg3libmpeg3.pro 80 CONFIG_LIBMPEG3 core/multimedia/opieplayer/libmpeg3libmpeg3.pro
80 CONFIG_LIBOPIE libopielibopie.pro 81 CONFIG_LIBOPIE libopielibopie.pro
81 CONFIG_LIBOPIE2CORE libopie2/opiecoreopiecore.pro 82 CONFIG_LIBOPIE2CORE libopie2/opiecoreopiecore.pro
82 CONFIG_LIBOPIE2DB libopie2/opiedbopiedb.pro 83 CONFIG_LIBOPIE2DB libopie2/opiedbopiedb.pro
83 CONFIG_LIBOPIE2NET libopie2/opienetopienet.pro 84 CONFIG_LIBOPIE2NET libopie2/opienetopienet.pro
84 CONFIG_LIBOPIE2PIM libopie2/opiepimopiepim.pro 85 CONFIG_LIBOPIE2PIM libopie2/opiepimopiepim.pro
85 CONFIG_LIBOPIE2UI libopie2/opieuiopieui.pro 86 CONFIG_LIBOPIE2UI libopie2/opieuiopieui.pro
86 CONFIG_LIBOPIE2EXAMPLES libopie2/examplesexamples.pro 87 CONFIG_LIBOPIE2EXAMPLES libopie2/examplesexamples.pro
87 CONFIG_LIBQPE librarylibrary.pro 88 CONFIG_LIBQPE librarylibrary.pro
88 CONFIG_LIBQPE-X11 x11/libqpe-x11libqpe-x11.pro 89 CONFIG_LIBQPE-X11 x11/libqpe-x11libqpe-x11.pro
89 CONFIG_LIGHT-AND-POWER core/settings/light-and-powerlight-and-power.pro 90 CONFIG_LIGHT-AND-POWER core/settings/light-and-powerlight-and-power.pro
90 CONFIG_LIQUID noncore/styles/liquidliquid.pro 91 CONFIG_LIQUID noncore/styles/liquidliquid.pro
91 CONFIG_LOGOUTAPPLET core/applets/logoutappletlogoutapplet.pro 92 CONFIG_LOGOUTAPPLET core/applets/logoutappletlogoutapplet.pro
92 CONFIG_OPIETOOTH-MANAGER noncore/net/opietooth/managermanager.pro 93 CONFIG_OPIETOOTH-MANAGER noncore/net/opietooth/managermanager.pro
93 CONFIG_MEDIUMMOUNT noncore/settings/mediummountmediummount.pro 94 CONFIG_MEDIUMMOUNT noncore/settings/mediummountmediummount.pro
94 CONFIG_METAL noncore/styles/metalmetal.pro 95 CONFIG_METAL noncore/styles/metalmetal.pro
95 CONFIG_MINDBREAKER noncore/games/mindbreakermindbreaker.pro 96 CONFIG_MINDBREAKER noncore/games/mindbreakermindbreaker.pro
96 CONFIG_MINESWEEP noncore/games/minesweepminesweep.pro 97 CONFIG_MINESWEEP noncore/games/minesweepminesweep.pro
97 CONFIG_MODPLUG core/multimedia/opieplayer/modplugmodplug.pro 98 CONFIG_MODPLUG core/multimedia/opieplayer/modplugmodplug.pro
98 CONFIG_MULTIKEY inputmethods/multikeymultikey.pro 99 CONFIG_MULTIKEY inputmethods/multikeymultikey.pro
99 CONFIG_NETSYSTEMTIME noncore/settings/netsystemtimenetsystemtime.pro 100 CONFIG_NETSYSTEMTIME noncore/settings/netsystemtimenetsystemtime.pro
100 CONFIG_NETWORKSETUP noncore/net/networksettingsnetworksettings.pro 101 CONFIG_NETWORKSETUP noncore/net/networksettingsnetworksettings.pro
101 CONFIG_NOTESAPPLET noncore/applets/notesappletnotesapplet.pro 102 CONFIG_NOTESAPPLET noncore/applets/notesappletnotesapplet.pro
102 CONFIG_OBEX core/applets/obex2obex.pro 103 CONFIG_OBEX core/applets/obex2obex.pro
103 CONFIG_OCOPSERVER x11/ipc/serverocopserver.pro 104 CONFIG_OCOPSERVER x11/ipc/serverocopserver.pro
104 CONFIG_OIPKG core/apps/oipkgoipkg.pro 105 CONFIG_OIPKG core/apps/oipkgoipkg.pro
105 CONFIG_OPIE-CONSOLE noncore/apps/opie-consoleopie-console.pro 106 CONFIG_OPIE-CONSOLE noncore/apps/opie-consoleopie-console.pro
106 CONFIG_OPIE-LOGIN core/opie-loginopie-login.pro 107 CONFIG_OPIE-LOGIN core/opie-loginopie-login.pro
107 CONFIG_OPIEMAIL2noncore/mail mail.pro 108 CONFIG_OPIEMAIL2noncore/mail mail.pro
108 CONFIG_OPIE-READER noncore/apps/opie-readeropie-reader.pro 109 CONFIG_OPIE-READER noncore/apps/opie-readeropie-reader.pro
109 CONFIG_OPIE-SH noncore/tools/opie-shopie-sh.pro 110 CONFIG_OPIE-SH noncore/tools/opie-shopie-sh.pro
110 CONFIG_OPIE-SHEET noncore/apps/opie-sheetopie-sheet.pro 111 CONFIG_OPIE-SHEET noncore/apps/opie-sheetopie-sheet.pro
111 CONFIG_OPIEALARMcore/opiealarm 112 CONFIG_OPIEALARMcore/opiealarm
112 CONFIG_OPIEFTP noncore/net/opieftpopieftp.pro 113 CONFIG_OPIEFTP noncore/net/opieftpopieftp.pro
113 CONFIG_OPIEIRC noncore/net/opieircopieirc.pro 114 CONFIG_OPIEIRC noncore/net/opieircopieirc.pro
114 CONFIG_OPIEPLAYER core/multimedia/opieplayeropieplayer.pro 115 CONFIG_OPIEPLAYER core/multimedia/opieplayeropieplayer.pro
115 CONFIG_OPIEPLAYER2 noncore/multimedia/opieplayer2opieplayer2.pro 116 CONFIG_OPIEPLAYER2 noncore/multimedia/opieplayer2opieplayer2.pro
116 CONFIG_OXYGEN noncore/apps/oxygenoxygen.pro 117 CONFIG_OXYGEN noncore/apps/oxygenoxygen.pro
117 CONFIG_PARASHOOT noncore/games/parashootparashoot.pro 118 CONFIG_PARASHOOT noncore/games/parashootparashoot.pro
118 CONFIG_PICKBOARD inputmethods/pickboardpickboard.pro 119 CONFIG_PICKBOARD inputmethods/pickboardpickboard.pro
119 CONFIG_QASTEROIDS noncore/games/qasteroidsqasteroids.pro 120 CONFIG_QASTEROIDS noncore/games/qasteroidsqasteroids.pro
120 CONFIG_QCOP core/apps/qcopqcop.pro 121 CONFIG_QCOP core/apps/qcopqcop.pro
121 CONFIG_ODICT noncore/apps/odictodict.pro 122 CONFIG_ODICT noncore/apps/odictodict.pro
122 CONFIG_QPDF noncore/graphics/qpdfqpdf.pro 123 CONFIG_QPDF noncore/graphics/qpdfqpdf.pro
123 CONFIG_REMOTE noncore/tools/remoteremote.pro 124 CONFIG_REMOTE noncore/tools/remoteremote.pro
124 CONFIG_ROTATION noncore/settings/rotationrotation.pro 125 CONFIG_ROTATION noncore/settings/rotationrotation.pro
125 CONFIG_RUNAPPLET core/applets/runappletrunapplet.pro 126 CONFIG_RUNAPPLET core/applets/runappletrunapplet.pro
126 CONFIG_SCREENSHOTAPPLET core/applets/screenshotappletscreenshotapplet.pro 127 CONFIG_SCREENSHOTAPPLET core/applets/screenshotappletscreenshotapplet.pro
127 CONFIG_SECURITY core/settings/securitysecurity.pro 128 CONFIG_SECURITY core/settings/securitysecurity.pro
128 CONFIG_SFCAVE noncore/games/sfcavesfcave.pro 129 CONFIG_SFCAVE noncore/games/sfcavesfcave.pro
129 CONFIG_SFCAVE-SDL noncore/games/sfcave-sdlsfcave-sdl.pro 130 CONFIG_SFCAVE-SDL noncore/games/sfcave-sdlsfcave-sdl.pro
130 CONFIG_SHOWIMG noncore/multimedia/showimgshowimg.pro 131 CONFIG_SHOWIMG noncore/multimedia/showimgshowimg.pro
131 CONFIG_SINGLE singlesingle.pro 132 CONFIG_SINGLE singlesingle.pro
132 CONFIG_SNAKE noncore/games/snakesnake.pro 133 CONFIG_SNAKE noncore/games/snakesnake.pro
133 CONFIG_SOLITAIRE noncore/games/solitairesolitaire.pro 134 CONFIG_SOLITAIRE noncore/games/solitairesolitaire.pro
134 CONFIG_SOUND noncore/settings/soundsound.pro 135 CONFIG_SOUND noncore/settings/soundsound.pro
135 CONFIG_SSHKEYS noncore/settings/sshkeyssshkeys.pro 136 CONFIG_SSHKEYS noncore/settings/sshkeyssshkeys.pro
136 CONFIG_SUSPENDAPPLET core/applets/suspendappletsuspendapplet.pro 137 CONFIG_SUSPENDAPPLET core/applets/suspendappletsuspendapplet.pro
137 CONFIG_ROTATEAPPLET core/applets/rotateappletrotateapplet.pro 138 CONFIG_ROTATEAPPLET core/applets/rotateappletrotateapplet.pro
138 CONFIG_SYSINFO noncore/apps/sysinfosysinfo.pro 139 CONFIG_SYSINFO noncore/apps/sysinfosysinfo.pro
139 CONFIG_TABLEVIEWER noncore/apps/tableviewertableviewer.pro 140 CONFIG_TABLEVIEWER noncore/apps/tableviewertableviewer.pro
140 CONFIG_TABMANAGER noncore/settings/tabmanagertabmanager.pro 141 CONFIG_TABMANAGER noncore/settings/tabmanagertabmanager.pro
141 CONFIG_TETRIX noncore/games/tetrixtetrix.pro 142 CONFIG_TETRIX noncore/games/tetrixtetrix.pro
142 CONFIG_TEXTEDIT core/apps/textedittextedit.pro 143 CONFIG_TEXTEDIT core/apps/textedittextedit.pro
143 CONFIG_THEME noncore/styles/themetheme.pro 144 CONFIG_THEME noncore/styles/themetheme.pro
144 CONFIG_TICTAC noncore/games/tictactictac.pro 145 CONFIG_TICTAC noncore/games/tictactictac.pro
145 CONFIG_TINYKATE noncore/apps/tinykatetinykate.pro 146 CONFIG_TINYKATE noncore/apps/tinykatetinykate.pro
146 CONFIG_TODAY core/pim/todaytoday.pro 147 CONFIG_TODAY core/pim/todaytoday.pro
147CONFIG_TODAY_ADDRESSBOOK core/pim/today/plugins/addressbook addressbook.pro 148CONFIG_TODAY_ADDRESSBOOK core/pim/today/plugins/addressbook addressbook.pro
148 CONFIG_TODAY_DATEBOOK core/pim/today/plugins/datebookdatebook.pro 149 CONFIG_TODAY_DATEBOOK core/pim/today/plugins/datebookdatebook.pro
149 CONFIG_TODAY_FORTUNE noncore/todayplugins/fortunefortune.pro 150 CONFIG_TODAY_FORTUNE noncore/todayplugins/fortunefortune.pro
150 CONFIG_TODAY_MAIL core/pim/today/plugins/mailmail.pro 151 CONFIG_TODAY_MAIL core/pim/today/plugins/mailmail.pro
151 CONFIG_TODAY_STOCKTICKER noncore/todayplugins/stockticker/stocktickerstockticker.pro 152 CONFIG_TODAY_STOCKTICKER noncore/todayplugins/stockticker/stocktickerstockticker.pro
152 CONFIG_TODAY_STOCKTICKERLIB noncore/todayplugins/stockticker/stocktickerlibstocktickerlib.pro 153 CONFIG_TODAY_STOCKTICKERLIB noncore/todayplugins/stockticker/stocktickerlibstocktickerlib.pro
153 CONFIG_TODAY_WEATHERnoncore/todayplugins/weather weather.pro 154 CONFIG_TODAY_WEATHERnoncore/todayplugins/weather weather.pro
154 CONFIG_TODAY_TODOLIST core/pim/today/plugins/todolisttodolist.pro 155 CONFIG_TODAY_TODOLIST core/pim/today/plugins/todolisttodolist.pro
155 CONFIG_TODO core/pim/todotodo.pro 156 CONFIG_TODO core/pim/todotodo.pro
156 CONFIG_UNIKEYBOARD inputmethods/unikeyboardunikeyboard.pro 157 CONFIG_UNIKEYBOARD inputmethods/unikeyboardunikeyboard.pro
157 CONFIG_USERMANAGER noncore/settings/usermanagerusermanager.pro 158 CONFIG_USERMANAGER noncore/settings/usermanagerusermanager.pro
158 CONFIG_VMEMO core/applets/vmemovmemo.pro 159 CONFIG_VMEMO core/applets/vmemovmemo.pro
159 CONFIG_VOLUMEAPPLET core/applets/volumeappletvolumeapplet.pro 160 CONFIG_VOLUMEAPPLET core/applets/volumeappletvolumeapplet.pro
160 CONFIG_WAVPLUGIN core/multimedia/opieplayer/wavpluginwavplugin.pro 161 CONFIG_WAVPLUGIN core/multimedia/opieplayer/wavpluginwavplugin.pro
161 CONFIG_WIRELESSAPPLET noncore/applets/wirelessappletwirelessapplet.pro 162 CONFIG_WIRELESSAPPLET noncore/applets/wirelessappletwirelessapplet.pro
162 CONFIG_WLAN noncore/net/networksettings/wlanwlan.pro 163 CONFIG_WLAN noncore/net/networksettings/wlanwlan.pro
163 CONFIG_WORDGAME noncore/games/wordgamewordgame.pro 164 CONFIG_WORDGAME noncore/games/wordgamewordgame.pro
diff --git a/pics/camera/cam.png b/pics/camera/cam.png
new file mode 100755
index 0000000..6bd468b
--- a/dev/null
+++ b/pics/camera/cam.png
Binary files differ