summaryrefslogtreecommitdiff
Unidiff
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,102 +1,104 @@
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 {
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,101 +1,102 @@
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
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