SVN_SILENT made messages (.desktop file) - always resolve ours
[kdepim.git] / accountwizard / page.cpp
blob83fe4aa1b9746b2767784af5f3de4b1f17cc2cd0
1 /*
2 Copyright (c) 2009 Volker Krause <vkrause@kde.org>
4 This library is free software; you can redistribute it and/or modify it
5 under the terms of the GNU Library General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or (at your
7 option) any later version.
9 This library is distributed in the hope that it will be useful, but WITHOUT
10 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
12 License for more details.
14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to the
16 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 02110-1301, USA.
20 #include "page.h"
21 #include <kpagewidgetmodel.h>
22 #include <kassistantdialog.h>
24 Page::Page(KAssistantDialog *parent):
25 QWidget(parent),
26 m_item(Q_NULLPTR),
27 m_parent(parent),
28 m_valid(false)
32 void Page::setPageWidgetItem(KPageWidgetItem *item)
34 m_item = item;
35 m_parent->setValid(m_item, m_valid);
38 void Page::setValid(bool valid)
40 if (!m_item) {
41 m_valid = valid;
42 } else {
43 m_parent->setValid(m_item, valid);
47 void Page::nextPage()
49 m_parent->next();
52 KAssistantDialog *Page::assistantDialog() const
54 return m_parent;
57 void Page::enterPageBack()
62 void Page::enterPageNext()
67 void Page::leavePageBack()
72 void Page::leavePageNext()
77 void Page::leavePageBackRequested()
79 Q_EMIT leavePageBackOk();
81 void Page::leavePageNextRequested()
83 Q_EMIT leavePageNextOk();