mirror-chatterino2/src/widgets/settingspages/CommandPage.hpp

20 lines
289 B
C++
Raw Normal View History

2018-01-12 23:09:05 +01:00
#pragma once
#include <QTextEdit>
#include <QTimer>
2018-06-26 14:09:39 +02:00
#include "widgets/settingspages/SettingsPage.hpp"
2018-01-12 23:09:05 +01:00
namespace chatterino {
class CommandPage : public SettingsPage
{
public:
CommandPage();
private:
2018-07-06 19:23:47 +02:00
QTimer commandsEditTimer_;
2018-01-12 23:09:05 +01:00
};
} // namespace chatterino