[SCM] ktp-contact-list packaging branch, master, updated. debian/15.12.1-2-1070-g6c56f91

Maximiliano Curia maxy at moszumanska.debian.org
Sat May 28 00:07:02 UTC 2016


Gitweb-URL: http://git.debian.org/?p=pkg-kde/applications/ktp-contact-list.git;a=commitdiff;h=f7b686f

The following commit has been merged in the master branch:
commit f7b686f98195e09139e860e8a858e8e1d497d37b
Author: David Edmundson <kde at davidedmundson.co.uk>
Date:   Fri Jun 24 13:35:19 2011 +0100

    Started contact info dialog
---
 dialogs/contact-info.cpp |  14 ++++++
 dialogs/contact-info.h   |  22 +++++++++
 dialogs/contact-info.ui  | 122 +++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 158 insertions(+)

diff --git a/dialogs/contact-info.cpp b/dialogs/contact-info.cpp
new file mode 100644
index 0000000..6916d37
--- /dev/null
+++ b/dialogs/contact-info.cpp
@@ -0,0 +1,14 @@
+#include "contact-info.h"
+#include "ui_contact-info.h"
+
+ContactInfo::ContactInfo(QWidget *parent) :
+    QDialog(parent),
+    ui(new Ui::ContactInfo)
+{
+    ui->setupUi(this);
+}
+
+ContactInfo::~ContactInfo()
+{
+    delete ui;
+}
diff --git a/dialogs/contact-info.h b/dialogs/contact-info.h
new file mode 100644
index 0000000..4fdaaaf
--- /dev/null
+++ b/dialogs/contact-info.h
@@ -0,0 +1,22 @@
+#ifndef CONTACTINFO_H
+#define CONTACTINFO_H
+
+#include <QDialog>
+
+namespace Ui {
+    class ContactInfo;
+}
+
+class ContactInfo : public QDialog
+{
+    Q_OBJECT
+
+public:
+    explicit ContactInfo(QWidget *parent = 0);
+    ~ContactInfo();
+
+private:
+    Ui::ContactInfo *ui;
+};
+
+#endif // CONTACTINFO_H
diff --git a/dialogs/contact-info.ui b/dialogs/contact-info.ui
new file mode 100644
index 0000000..aef1f6a
--- /dev/null
+++ b/dialogs/contact-info.ui
@@ -0,0 +1,122 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ui version="4.0">
+ <class>ContactInfo</class>
+ <widget class="QDialog" name="ContactInfo">
+  <property name="geometry">
+   <rect>
+    <x>0</x>
+    <y>0</y>
+    <width>400</width>
+    <height>300</height>
+   </rect>
+  </property>
+  <property name="windowTitle">
+   <string>Dialog</string>
+  </property>
+  <layout class="QFormLayout" name="formLayout">
+   <property name="fieldGrowthPolicy">
+    <enum>QFormLayout::ExpandingFieldsGrow</enum>
+   </property>
+   <item row="0" column="0">
+    <widget class="QLabel" name="label">
+     <property name="text">
+      <string>Contact ID:</string>
+     </property>
+    </widget>
+   </item>
+   <item row="0" column="1">
+    <widget class="QLabel" name="label_9">
+     <property name="text">
+      <string>TextLabel</string>
+     </property>
+    </widget>
+   </item>
+   <item row="1" column="0">
+    <widget class="QLabel" name="label_2">
+     <property name="text">
+      <string>Display Name:</string>
+     </property>
+    </widget>
+   </item>
+   <item row="1" column="1">
+    <widget class="QLabel" name="label_10">
+     <property name="text">
+      <string>TextLabel</string>
+     </property>
+    </widget>
+   </item>
+   <item row="2" column="0">
+    <widget class="QLabel" name="label_19">
+     <property name="text">
+      <string>Presence:</string>
+     </property>
+    </widget>
+   </item>
+   <item row="2" column="1">
+    <widget class="QLabel" name="label_20">
+     <property name="text">
+      <string>TextLabel</string>
+     </property>
+    </widget>
+   </item>
+   <item row="3" column="0">
+    <widget class="QLabel" name="label_18">
+     <property name="text">
+      <string>Status Message:</string>
+     </property>
+    </widget>
+   </item>
+   <item row="3" column="1">
+    <widget class="QLabel" name="label_11">
+     <property name="text">
+      <string>TextLabel</string>
+     </property>
+    </widget>
+   </item>
+   <item row="4" column="0">
+    <widget class="QLabel" name="label_3">
+     <property name="text">
+      <string>Publish State:</string>
+     </property>
+    </widget>
+   </item>
+   <item row="4" column="1">
+    <widget class="QLabel" name="label_12">
+     <property name="text">
+      <string>TextLabel</string>
+     </property>
+    </widget>
+   </item>
+   <item row="5" column="0">
+    <widget class="QLabel" name="label_5">
+     <property name="text">
+      <string>Subscription State:</string>
+     </property>
+    </widget>
+   </item>
+   <item row="5" column="1">
+    <widget class="QLabel" name="label_13">
+     <property name="text">
+      <string>TextLabel</string>
+     </property>
+    </widget>
+   </item>
+   <item row="6" column="0">
+    <widget class="QLabel" name="label_4">
+     <property name="text">
+      <string>Blocked:</string>
+     </property>
+    </widget>
+   </item>
+   <item row="6" column="1">
+    <widget class="QLabel" name="label_14">
+     <property name="text">
+      <string>TextLabel</string>
+     </property>
+    </widget>
+   </item>
+  </layout>
+ </widget>
+ <resources/>
+ <connections/>
+</ui>

-- 
ktp-contact-list packaging



More information about the pkg-kde-commits mailing list