qTox  Version: nightly | Commit: bc751c8e1cac455f9690654fcfe0f560d2d7dfdd
loadhistorydialog.h
Go to the documentation of this file.
1 /*
2  Copyright © 2014-2019 by The qTox Project Contributors
3 
4  This file is part of qTox, a Qt-based graphical interface for Tox.
5 
6  qTox is libre software: you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation, either version 3 of the License, or
9  (at your option) any later version.
10 
11  qTox is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  GNU General Public License for more details.
15 
16  You should have received a copy of the GNU General Public License
17  along with qTox. If not, see <http://www.gnu.org/licenses/>.
18 */
19 
20 #pragma once
21 
22 #include "src/core/toxpk.h"
23 #include <QDateTime>
24 #include <QDialog>
25 
26 namespace Ui {
27 class LoadHistoryDialog;
28 }
29 class IChatLog;
30 
31 class LoadHistoryDialog : public QDialog
32 {
33  Q_OBJECT
34 
35 public:
36  explicit LoadHistoryDialog(const IChatLog* chatLog, QWidget* parent = nullptr);
37  explicit LoadHistoryDialog(QWidget* parent = nullptr);
39 
40  QDateTime getFromDate();
41  void setTitle(const QString& title);
42  void setInfoLabel(const QString& info);
43 
44 public slots:
45  void highlightDates(int year, int month);
46 
47 private:
48  Ui::LoadHistoryDialog* ui;
49  const IChatLog* chatLog;
50 };
LoadHistoryDialog::ui
Ui::LoadHistoryDialog * ui
Definition: loadhistorydialog.h:48
LoadHistoryDialog::LoadHistoryDialog
LoadHistoryDialog(const IChatLog *chatLog, QWidget *parent=nullptr)
Definition: loadhistorydialog.cpp:30
toxpk.h
IChatLog
Definition: ichatlog.h:83
Ui
Definition: filetransferwidget.h:30
LoadHistoryDialog::setInfoLabel
void setInfoLabel(const QString &info)
Definition: loadhistorydialog.cpp:74
LoadHistoryDialog::highlightDates
void highlightDates(int year, int month)
Definition: loadhistorydialog.cpp:79
LoadHistoryDialog
Definition: loadhistorydialog.h:31
LoadHistoryDialog::setTitle
void setTitle(const QString &title)
Definition: loadhistorydialog.cpp:69
LoadHistoryDialog::getFromDate
QDateTime getFromDate()
Definition: loadhistorydialog.cpp:53
LoadHistoryDialog::~LoadHistoryDialog
~LoadHistoryDialog()
Definition: loadhistorydialog.cpp:48
LoadHistoryDialog::chatLog
const IChatLog * chatLog
Definition: loadhistorydialog.h:49