This repository has been archived by the owner. It is now read-only.
Permalink
Please sign in to comment.
Showing
with
131 additions
and 3 deletions.
| @@ -0,0 +1,89 @@ | ||
| +<?xml version="1.0" encoding="UTF-8"?> | ||
| +<ui version="4.0"> | ||
| + <class>CancelActivationDialog</class> | ||
| + <widget class="QDialog" name="CancelActivationDialog"> | ||
| + <property name="geometry"> | ||
| + <rect> | ||
| + <x>0</x> | ||
| + <y>0</y> | ||
| + <width>400</width> | ||
| + <height>156</height> | ||
| + </rect> | ||
| + </property> | ||
| + <property name="windowTitle"> | ||
| + <string>Cancel Activation</string> | ||
| + </property> | ||
| + <layout class="QVBoxLayout" name="verticalLayout"> | ||
| + <item> | ||
| + <widget class="QLabel" name="label"> | ||
| + <property name="text"> | ||
| + <string>Are you sure? | ||
| + | ||
| +If you don't activate Synergy you'll be missing out on some great features</string> | ||
| + </property> | ||
| + <property name="wordWrap"> | ||
| + <bool>true</bool> | ||
| + </property> | ||
| + <property name="openExternalLinks"> | ||
| + <bool>true</bool> | ||
| + </property> | ||
| + </widget> | ||
| + </item> | ||
| + <item> | ||
| + <widget class="QLabel" name="label_2"> | ||
| + <property name="text"> | ||
| + <string><html><head/><body><p><a href="https://symless.com/pricing?source=gui"><span style=" text-decoration: underline; color:#0000ff;">Buy now</span></a></p></body></html></string> | ||
| + </property> | ||
| + <property name="openExternalLinks"> | ||
| + <bool>true</bool> | ||
| + </property> | ||
| + </widget> | ||
| + </item> | ||
| + <item> | ||
| + <widget class="QDialogButtonBox" name="buttonBox"> | ||
| + <property name="orientation"> | ||
| + <enum>Qt::Horizontal</enum> | ||
| + </property> | ||
| + <property name="standardButtons"> | ||
| + <set>QDialogButtonBox::No|QDialogButtonBox::Yes</set> | ||
| + </property> | ||
| + </widget> | ||
| + </item> | ||
| + </layout> | ||
| + </widget> | ||
| + <resources/> | ||
| + <connections> | ||
| + <connection> | ||
| + <sender>buttonBox</sender> | ||
| + <signal>accepted()</signal> | ||
| + <receiver>CancelActivationDialog</receiver> | ||
| + <slot>accept()</slot> | ||
| + <hints> | ||
| + <hint type="sourcelabel"> | ||
| + <x>248</x> | ||
| + <y>254</y> | ||
| + </hint> | ||
| + <hint type="destinationlabel"> | ||
| + <x>157</x> | ||
| + <y>274</y> | ||
| + </hint> | ||
| + </hints> | ||
| + </connection> | ||
| + <connection> | ||
| + <sender>buttonBox</sender> | ||
| + <signal>rejected()</signal> | ||
| + <receiver>CancelActivationDialog</receiver> | ||
| + <slot>reject()</slot> | ||
| + <hints> | ||
| + <hint type="sourcelabel"> | ||
| + <x>316</x> | ||
| + <y>260</y> | ||
| + </hint> | ||
| + <hint type="destinationlabel"> | ||
| + <x>286</x> | ||
| + <y>274</y> | ||
| + </hint> | ||
| + </hints> | ||
| + </connection> | ||
| + </connections> | ||
| +</ui> |
| @@ -0,0 +1,14 @@ | ||
| +#include "CancelActivationDialog.h" | ||
| +#include "ui_CancelActivationDialog.h" | ||
| + | ||
| +CancelActivationDialog::CancelActivationDialog(QWidget *parent) : | ||
| + QDialog(parent), | ||
| + ui(new Ui::CancelActivationDialog) | ||
| +{ | ||
| + ui->setupUi(this); | ||
| +} | ||
| + | ||
| +CancelActivationDialog::~CancelActivationDialog() | ||
| +{ | ||
| + delete ui; | ||
| +} |
| @@ -0,0 +1,22 @@ | ||
| +#ifndef CANCELACTIVATIONDIALOG_H | ||
| +#define CANCELACTIVATIONDIALOG_H | ||
| + | ||
| +#include <QDialog> | ||
| + | ||
| +namespace Ui { | ||
| +class CancelActivationDialog; | ||
| +} | ||
| + | ||
| +class CancelActivationDialog : public QDialog | ||
| +{ | ||
| + Q_OBJECT | ||
| + | ||
| +public: | ||
| + explicit CancelActivationDialog(QWidget *parent = 0); | ||
| + ~CancelActivationDialog(); | ||
| + | ||
| +private: | ||
| + Ui::CancelActivationDialog *ui; | ||
| +}; | ||
| + | ||
| +#endif // CANCELACTIVATIONDIALOG_H |
0 comments on commit
d4646b1