Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Unmaintained
KDE Pim
Commits
9f6d3bca
Commit
9f6d3bca
authored
Nov 10, 2014
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Dead code--
parent
95683c61
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
122 deletions
+0
-122
korganizer/CMakeLists.txt
korganizer/CMakeLists.txt
+0
-1
korganizer/statusdialog.cpp
korganizer/statusdialog.cpp
+0
-78
korganizer/statusdialog.h
korganizer/statusdialog.h
+0
-43
No files found.
korganizer/CMakeLists.txt
View file @
9f6d3bca
...
...
@@ -198,7 +198,6 @@ set(korganizerprivate_LIB_SRCS
navigatorbar.cpp
previewdialog.cpp
searchdialog.cpp
statusdialog.cpp
views/agendaview/koagendaview.cpp
views/journalview/kojournalview.cpp
views/listview/kolistview.cpp
...
...
korganizer/statusdialog.cpp
deleted
100644 → 0
View file @
95683c61
/*
This file is part of KOrganizer.
Copyright (c) 2001 Cornelius Schumacher <schumacher@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.
*/
#include "statusdialog.h"
#include <KCalUtils/Stringify>
#include <KComboBox>
#include <KLocalizedString>
#include <KPushButton>
#include <KStandardGuiItem>
#include <QBoxLayout>
#include <QHBoxLayout>
#include <QLabel>
StatusDialog
::
StatusDialog
(
QWidget
*
parent
)
:
KDialog
(
parent
)
{
setModal
(
true
);
setCaption
(
i18n
(
"Set Your Status"
)
);
QBoxLayout
*
topLayout
=
new
QVBoxLayout
(
this
);
topLayout
->
setSpacing
(
spacingHint
()
);
topLayout
->
setMargin
(
marginHint
()
);
QBoxLayout
*
statusLayout
=
new
QHBoxLayout
();
topLayout
->
addItem
(
statusLayout
);
QLabel
*
text
=
new
QLabel
(
i18n
(
"Set your status"
),
this
);
statusLayout
->
addWidget
(
text
);
mStatus
=
new
KComboBox
(
this
);
mStatus
->
setEditable
(
false
);
mStatus
->
addItems
(
KCalUtils
::
Stringify
::
attendeeStatusList
()
);
statusLayout
->
addWidget
(
mStatus
);
QBoxLayout
*
buttonLayout
=
new
QHBoxLayout
();
topLayout
->
addItem
(
buttonLayout
);
QPushButton
*
ok
=
new
KPushButton
(
KStandardGuiItem
::
ok
(),
this
);
connect
(
ok
,
SIGNAL
(
clicked
()),
this
,
SLOT
(
accept
())
);
buttonLayout
->
addWidget
(
ok
);
QPushButton
*
cancel
=
new
KPushButton
(
KStandardGuiItem
::
cancel
(),
this
);
connect
(
cancel
,
SIGNAL
(
clicked
()),
this
,
SLOT
(
reject
())
);
buttonLayout
->
addWidget
(
cancel
);
}
StatusDialog
::~
StatusDialog
()
{
}
KCalCore
::
Attendee
::
PartStat
StatusDialog
::
status
()
{
return
KCalCore
::
Attendee
::
PartStat
(
mStatus
->
currentIndex
()
)
;
}
korganizer/statusdialog.h
deleted
100644 → 0
View file @
95683c61
/*
This file is part of KOrganizer.
Copyright (c) 2001 Cornelius Schumacher <schumacher@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.
*/
#ifndef KORG_STATUSDIALOG_H
#define KORG_STATUSDIALOG_H
#include <KDialog>
#include <KCalCore/Attendee>
class
KComboBox
;
class
StatusDialog
:
public
KDialog
{
Q_OBJECT
public:
explicit
StatusDialog
(
QWidget
*
parent
=
0
);
~
StatusDialog
();
KCalCore
::
Attendee
::
PartStat
status
();
private:
KComboBox
*
mStatus
;
};
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment