You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
digikam/digikam/showfoto/showfoto.h

136 lines
2.9 KiB

/* ============================================================
*
* This file is a part of digiKam project
* http://www.digikam.org
*
* Date : 2004-11-22
* Description : stand alone digiKam image editor GUI
*
* Copyright (C) 2004-2005 by Renchi Raju <renchi@pooh.tam.uiuc.edu>
* Copyright (C) 2005-2006 by Tom Albers <tomalbers@kde.nl>
* Copyright (C) 2004-2008 by Gilles Caulier <caulier dot gilles at gmail dot com>
* Copyright (C) 2006-2008 by Marcel Wiesweg <marcel.wiesweg@gmx.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 the Free Software Foundation;
* either version 2, or (at your option)
* any later version.
*
* This program 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.
*
* ============================================================ */
#ifndef SHOWFOTO_H
#define SHOWFOTO_H
// KDE includes.
#include <kurl.h>
// Local includes.
#include "editorwindow.h"
namespace TDEIO
{
class Job;
}
namespace Digikam
{
class SlideshowSettings;
}
namespace ShowFoto
{
class ShowFotoPriv;
class ShowFoto : public Digikam::EditorWindow
{
TQ_OBJECT
public:
ShowFoto(const KURL::List& urlList);
~ShowFoto();
virtual void show();
bool setup(bool iccSetupPage=false);
private:
bool queryClose();
bool queryExit();
void setupActions();
void setupConnections();
void setupUserArea();
void readSettings();
void saveSettings();
void applySettings();
void toggleActions(bool val);
void toggleGUI2FullScreen();
void toggleNavigation(int index);
bool save();
bool saveAs();
void finishSaving(bool success);
void saveIsComplete();
void saveAsIsComplete();
void slideShow(bool startWithCurrent, Digikam::SlideShowSettings& settings);
void openFolder(const KURL& url);
Digikam::Sidebar* rightSideBar() const;
private slots:
void slotForward();
void slotBackward();
void slotLast();
void slotFirst();
void slotFilePrint();
void slotOpenFile();
void slotOpenURL(const KURL& url);
void slotOpenFolder(const KURL& url);
void slotOpenFilesInFolder();
void slotDeleteCurrentItem();
void slotToggleShowBar();
void slotChangeBCG();
void slotChanged();
void slotUndoStateChanged(bool, bool, bool);
void slotUpdateItemInfo();
void slotDeleteCurrentItemResult( TDEIO::Job * job );
void slotLoadingStarted(const TQString &filename);
void slotLoadingFinished(const TQString &filename, bool success);
void slotSavingStarted(const TQString &filename);
void slotContextMenu();
void slotRevert();
private:
ShowFotoPriv* d;
};
} // namespace ShowFoto
#endif /* SHOWFOTO_H */