mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 18:32:51 +00:00
92 lines
2.4 KiB
C++
92 lines
2.4 KiB
C++
/*
|
|
This file is part of libkdepim.
|
|
|
|
Copyright (c) 2004 Lutz Rogowski <rogowski@kde.org>
|
|
|
|
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 of the License, 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.
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
As a special exception, permission is given to link this program
|
|
with any edition of Qt, and distribute the resulting executable,
|
|
without including the source code for Qt in the source distribution.
|
|
*/
|
|
#ifndef KDEPIM_KINCIDENCECHOOSER_H
|
|
#define KDEPIM_KINCIDENCECHOOSER_H
|
|
|
|
#include "libkdepim-copy_export.h"
|
|
#include "calendardiffalgo.h"
|
|
#include "htmldiffalgodisplay.h"
|
|
|
|
#include <kcalcore/incidence.h>
|
|
|
|
#include <KDialog>
|
|
|
|
#include <QButtonGroup>
|
|
#include <QLabel>
|
|
|
|
namespace KPIM {
|
|
|
|
/**
|
|
@brief
|
|
Dialog to change the korganizer configuration.
|
|
*/
|
|
|
|
class KDEPIM_COPY_EXPORT KIncidenceChooser : public KDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
enum mode {
|
|
local,
|
|
remote,
|
|
newest,
|
|
ask,
|
|
both
|
|
};
|
|
|
|
/** Initialize dialog and pages */
|
|
KIncidenceChooser( QWidget *parent = 0 );
|
|
~KIncidenceChooser();
|
|
void setIncidence( const KCalCore::Incidence::Ptr &,
|
|
const KCalCore::Incidence::Ptr & );
|
|
KCalCore::Incidence::Ptr getIncidence();
|
|
static int chooseMode;
|
|
|
|
public Q_SLOTS:
|
|
void useGlobalMode();
|
|
|
|
protected Q_SLOTS:
|
|
void showIncidence1();
|
|
void showIncidence2();
|
|
void showDiff();
|
|
void takeIncidence1();
|
|
void takeIncidence2();
|
|
void takeBoth();
|
|
void setLabels();
|
|
void setSyncMode();
|
|
void detailsDialogClosed();
|
|
|
|
private:
|
|
HTMLDiffAlgoDisplay *mDisplayDiff;
|
|
CalendarDiffAlgo *diff;
|
|
KDialog *mTbL, *mTbN;
|
|
KCalCore::Incidence::Ptr mSelIncidence;
|
|
KCalCore::Incidence::Ptr mInc1, mInc2;
|
|
QButtonGroup *mBg;
|
|
QPushButton *mDiffBut, *mShowDetails1, *mShowDetails2;
|
|
QLabel *mInc1lab, *mInc2lab, *mInc1Sumlab, *mInc2Sumlab, *mMod1lab, *mMod2lab;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|