/* * Copyright (c) 2011 Vlad Voicu * Licensed under the Simplified BSD license. * See Documentation/Licenses/BSD-simplified.txt for more information. */ #pragma once #include "ui_QtSpellCheckerWindow.h" #include namespace Swift { class SettingsProvider; class QtSpellCheckerWindow : public QDialog, protected Ui::QtSpellCheckerWindow { Q_OBJECT public: QtSpellCheckerWindow(SettingsProvider* settings, QWidget* parent = NULL); public slots: void handleChecker(bool state); private: SettingsProvider* settings_; Ui::QtSpellCheckerWindow ui_; }; }