Akonadi Contacts

smsdialog.h
1 /*
2  This file is part of Akonadi Contact.
3 
4  SPDX-FileCopyrightText: 2010 Felix Mauch ([email protected])
5 
6  SPDX-License-Identifier: LGPL-2.0-or-later
7 */
8 
9 #pragma once
10 
11 #include <QDialog>
12 
13 class QLabel;
14 
15 class KTextEdit;
16 
17 namespace KContacts
18 {
19 class PhoneNumber;
20 }
21 
22 class SmsDialog : public QDialog
23 {
24  Q_OBJECT
25 
26 public:
27  explicit SmsDialog(const KContacts::PhoneNumber &number);
28  ~SmsDialog() override;
29 
30  Q_REQUIRED_RESULT QString message() const;
31 
32 private:
33  /**
34  * Calculates the needed amount of sms and the number of characters left in the current sms.
35  * Shows the result in the QLabel mLengthLabel.
36  */
37  void updateCounter();
38  void initUI();
39 
40  QString mNumber;
41  KTextEdit *mSmsTextEdit = nullptr;
42  QLabel *mLengthLabel = nullptr;
43  QString mText;
44 };
Q_OBJECTQ_OBJECT
QString message
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Sat Apr 1 2023 04:09:05 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.