mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 18:32:51 +00:00
kamera: format and indent
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
f81e445c07
commit
6176039dfc
2 changed files with 812 additions and 805 deletions
File diff suppressed because it is too large
Load diff
|
@ -1,8 +1,8 @@
|
|||
/*
|
||||
|
||||
Copyright (C) 2001 The Kompany
|
||||
2001-2003 Ilya Konstantinov <kde-devel@future.shiny.co.il>
|
||||
2001-2008 Marcus Meissner <marcus@jet.franken.de>
|
||||
2001-2003 Ilya Konstantinov <kde-devel@future.shiny.co.il>
|
||||
2001-2008 Marcus Meissner <marcus@jet.franken.de>
|
||||
|
||||
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
|
||||
|
@ -31,52 +31,49 @@ class KConfig;
|
|||
class KameraProtocol : public KIO::SlaveBase
|
||||
{
|
||||
public:
|
||||
KameraProtocol(const QByteArray &pool, const QByteArray &app);
|
||||
virtual ~KameraProtocol();
|
||||
KameraProtocol(const QByteArray &pool, const QByteArray &app);
|
||||
virtual ~KameraProtocol();
|
||||
|
||||
virtual void get(const KUrl &url);
|
||||
virtual void stat(const KUrl &url);
|
||||
virtual void del(const KUrl &url, bool isFile);
|
||||
virtual void listDir(const KUrl &url);
|
||||
virtual void special(const QByteArray &data);
|
||||
virtual void get(const KUrl &url);
|
||||
virtual void stat(const KUrl &url);
|
||||
virtual void del(const KUrl &url, bool isFile);
|
||||
virtual void listDir(const KUrl &url);
|
||||
virtual void special(const QByteArray &data);
|
||||
|
||||
CameraFile *getFile() { return m_file; }
|
||||
KIO::filesize_t getFileSize() { return m_fileSize; }
|
||||
void setFileSize(KIO::filesize_t newfs) { m_fileSize = newfs; }
|
||||
CameraFile *getFile() { return m_file; }
|
||||
KIO::filesize_t getFileSize() { return m_fileSize; }
|
||||
void setFileSize(KIO::filesize_t newfs) { m_fileSize = newfs; }
|
||||
|
||||
private:
|
||||
Camera *m_camera;
|
||||
QString current_camera, current_port;
|
||||
CameraAbilities m_abilities;
|
||||
KConfig *m_config;
|
||||
Camera *m_camera;
|
||||
QString current_camera, current_port;
|
||||
CameraAbilities m_abilities;
|
||||
KConfig *m_config;
|
||||
|
||||
GPContext *m_context;
|
||||
GPContext *m_context;
|
||||
|
||||
void split_url2camerapath(QString url, QString &directory, QString &file);
|
||||
void setCamera(const QString &cam, const QString &port);
|
||||
void reparseConfiguration(void);
|
||||
bool openCamera(QString& str);
|
||||
bool openCamera(void ) {
|
||||
QString errstr;
|
||||
return openCamera(errstr);
|
||||
}
|
||||
void closeCamera(void);
|
||||
void split_url2camerapath(QString url, QString &directory, QString &file);
|
||||
void setCamera(const QString &cam, const QString &port);
|
||||
void reparseConfiguration(void);
|
||||
bool openCamera(QString& str);
|
||||
bool openCamera(void ) { QString errstr; return openCamera(errstr); }
|
||||
void closeCamera(void);
|
||||
|
||||
void statRoot(void);
|
||||
void statRegular(const KUrl &url);
|
||||
void translateTextToUDS(KIO::UDSEntry &udsEntry, const QString &info, const char *txt);
|
||||
void translateFileToUDS(KIO::UDSEntry &udsEntry, const CameraFileInfo &info, QString name);
|
||||
void translateDirectoryToUDS(KIO::UDSEntry &udsEntry, const QString &dirname);
|
||||
bool cameraSupportsPreview(void);
|
||||
bool cameraSupportsDel(void);
|
||||
bool cameraSupportsPut(void);
|
||||
int readCameraFolder(const QString &folder, CameraList *dirList, CameraList *fileList);
|
||||
void statRoot(void);
|
||||
void statRegular(const KUrl &url);
|
||||
void translateTextToUDS(KIO::UDSEntry &udsEntry, const QString &info, const char *txt);
|
||||
void translateFileToUDS(KIO::UDSEntry &udsEntry, const CameraFileInfo &info, QString name);
|
||||
void translateDirectoryToUDS(KIO::UDSEntry &udsEntry, const QString &dirname);
|
||||
bool cameraSupportsPreview(void);
|
||||
bool cameraSupportsDel(void);
|
||||
bool cameraSupportsPut(void);
|
||||
int readCameraFolder(const QString &folder, CameraList *dirList, CameraList *fileList);
|
||||
|
||||
QString m_lockfile;
|
||||
int idletime;
|
||||
QString m_lockfile;
|
||||
int idletime;
|
||||
|
||||
KIO::filesize_t m_fileSize;
|
||||
CameraFile *m_file;
|
||||
bool actiondone, cameraopen;
|
||||
KIO::filesize_t m_fileSize;
|
||||
CameraFile *m_file;
|
||||
bool actiondone, cameraopen;
|
||||
};
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue