[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-commits
Subject:    [kdepim/KDE/4.14] libkdepim/addressline: Create a completionconfiguredialog which has all widget to 
From:       Montel Laurent <montel () kde ! org>
Date:       2015-02-26 7:46:24
Message-ID: E1YQt9M-0005a6-FQ () scm ! kde ! org
[Download RAW message or body]

Git commit ced801ea3d78d7792f93839f19515454e0f332b4 by Montel Laurent.
Committed on 26/02/2015 at 07:30.
Pushed by mlaurent into branch 'KDE/4.14'.

Create a completionconfiguredialog which has all widget to configure it

M  +5    -0    libkdepim/addressline/autotests/CMakeLists.txt
A  +35   -0    libkdepim/addressline/autotests/completionconfiguredialogtest.cpp     \
[License: LGPL (v2+)] A  +34   -0    \
libkdepim/addressline/autotests/completionconfiguredialogtest.h     [License: LGPL \
(v2+)] A  +35   -0    libkdepim/addressline/completionconfiguredialog.cpp     \
[License: LGPL (v2+)] A  +35   -0    \
libkdepim/addressline/completionconfiguredialog.h     [License: LGPL (v2+)]

http://commits.kde.org/kdepim/ced801ea3d78d7792f93839f19515454e0f332b4

diff --git a/libkdepim/addressline/autotests/CMakeLists.txt \
b/libkdepim/addressline/autotests/CMakeLists.txt index e05572f..dbe26f2 100644
--- a/libkdepim/addressline/autotests/CMakeLists.txt
+++ b/libkdepim/addressline/autotests/CMakeLists.txt
@@ -13,3 +13,8 @@ set( libkdepim_recentaddresswidgettest_SRCS \
recentaddresswidgettest.cpp ../recen  kde4_add_unit_test( \
libkdepim_recentaddresswidgettest ${libkdepim_recentaddresswidgettest_SRCS})  \
target_link_libraries( libkdepim_recentaddresswidgettest ${QT_QTTEST_LIBRARY} \
${KDE4_KDEUI_LIBS} ${KDEPIMLIBS_KABC_LIBS} ${KDEPIMLIBS_KPIMUTILS_LIBS})  
+
+
+set( libkdepim_completionconfiguredialogtest_SRCS completionconfiguredialogtest.cpp \
) +kde4_add_unit_test( libkdepim_completionconfiguredialogtest \
${libkdepim_completionconfiguredialogtest_SRCS}) +target_link_libraries( \
libkdepim_completionconfiguredialogtest ${QT_QTTEST_LIBRARY} ${KDE4_KDEUI_LIBS} \
                kdepim)
diff --git a/libkdepim/addressline/autotests/completionconfiguredialogtest.cpp \
b/libkdepim/addressline/autotests/completionconfiguredialogtest.cpp new file mode \
100644 index 0000000..29ea774
--- /dev/null
+++ b/libkdepim/addressline/autotests/completionconfiguredialogtest.cpp
@@ -0,0 +1,35 @@
+/*
+  Copyright (c) 2015 Montel Laurent <montel@kde.org>
+
+  This library is free software; you can redistribute it and/or modify it
+  under the terms of the GNU Library General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or (at your
+  option) any later version.
+
+  This library 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 Library General Public
+  License for more details.
+
+  You should have received a copy of the GNU Library General Public License
+  along with this library; see the file COPYING.LIB.  If not, write to the
+  Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+  02110-1301, USA.
+
+*/
+
+#include "completionconfiguredialogtest.h"
+#include <qtest_kde.h>
+
+CompletionConfigureDialogTest::CompletionConfigureDialogTest(QObject *parent)
+    : QObject(parent)
+{
+
+}
+
+CompletionConfigureDialogTest::~CompletionConfigureDialogTest()
+{
+
+}
+
+QTEST_KDEMAIN(CompletionConfigureDialogTest, GUI)
diff --git a/libkdepim/addressline/autotests/completionconfiguredialogtest.h \
b/libkdepim/addressline/autotests/completionconfiguredialogtest.h new file mode \
100644 index 0000000..fe4e714
--- /dev/null
+++ b/libkdepim/addressline/autotests/completionconfiguredialogtest.h
@@ -0,0 +1,34 @@
+/*
+  Copyright (c) 2015 Montel Laurent <montel@kde.org>
+
+  This library is free software; you can redistribute it and/or modify it
+  under the terms of the GNU Library General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or (at your
+  option) any later version.
+
+  This library 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 Library General Public
+  License for more details.
+
+  You should have received a copy of the GNU Library General Public License
+  along with this library; see the file COPYING.LIB.  If not, write to the
+  Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+  02110-1301, USA.
+
+*/
+
+#ifndef COMPLETIONCONFIGUREDIALOGTEST_H
+#define COMPLETIONCONFIGUREDIALOGTEST_H
+
+#include <QObject>
+
+class CompletionConfigureDialogTest : public QObject
+{
+    Q_OBJECT
+public:
+    explicit CompletionConfigureDialogTest(QObject *parent = 0);
+    ~CompletionConfigureDialogTest();
+};
+
+#endif // COMPLETIONCONFIGUREDIALOGTEST_H
diff --git a/libkdepim/addressline/completionconfiguredialog.cpp \
b/libkdepim/addressline/completionconfiguredialog.cpp new file mode 100644
index 0000000..54f2055
--- /dev/null
+++ b/libkdepim/addressline/completionconfiguredialog.cpp
@@ -0,0 +1,35 @@
+/*
+  Copyright (c) 2015 Montel Laurent <montel@kde.org>
+
+  This library is free software; you can redistribute it and/or modify it
+  under the terms of the GNU Library General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or (at your
+  option) any later version.
+
+  This library 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 Library General Public
+  License for more details.
+
+  You should have received a copy of the GNU Library General Public License
+  along with this library; see the file COPYING.LIB.  If not, write to the
+  Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+  02110-1301, USA.
+
+*/
+
+
+#include "completionconfiguredialog.h"
+using namespace KPIM;
+CompletionConfigureDialog::CompletionConfigureDialog(QWidget *parent)
+    : KDialog(parent)
+{
+
+}
+
+
+
+CompletionConfigureDialog::~CompletionConfigureDialog()
+{
+
+}
diff --git a/libkdepim/addressline/completionconfiguredialog.h \
b/libkdepim/addressline/completionconfiguredialog.h new file mode 100644
index 0000000..7401748
--- /dev/null
+++ b/libkdepim/addressline/completionconfiguredialog.h
@@ -0,0 +1,35 @@
+/*
+  Copyright (c) 2015 Montel Laurent <montel@kde.org>
+
+  This library is free software; you can redistribute it and/or modify it
+  under the terms of the GNU Library General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or (at your
+  option) any later version.
+
+  This library 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 Library General Public
+  License for more details.
+
+  You should have received a copy of the GNU Library General Public License
+  along with this library; see the file COPYING.LIB.  If not, write to the
+  Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+  02110-1301, USA.
+
+*/
+
+#ifndef COMPLETIONCONFIGUREDIALOG_H
+#define COMPLETIONCONFIGUREDIALOG_H
+
+#include <KDialog>
+namespace KPIM {
+class CompletionConfigureDialog : public KDialog
+{
+    Q_OBJECT
+public:
+    explicit CompletionConfigureDialog(QWidget *parent=0);
+    ~CompletionConfigureDialog();
+};
+}
+
+#endif // COMPLETIONCONFIGUREDIALOG_H


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic