Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. #ifndef PLUGINS_AZOTH_PLUGINS_ACETAMIDE_IRCACCOUNTCONFIGURATIONDIALOG_H
  2. #define PLUGINS_AZOTH_PLUGINS_ACETAMIDE_IRCACCOUNTCONFIGURATIONDIALOG_H
  3.  
  4. #include <QDialog>
  5. #include "ui_ircaccountconfigurationdialog.h"
  6.  
  7. namespace LeechCraft
  8. {
  9. namespace Azoth
  10. {
  11. namespace Acetamide
  12. {
  13. class IrcAccountConfigurationDialog : public QDialog
  14. {
  15. Q_OBJECT
  16.  
  17. Ui::IrcAccountConfigurationDialog Ui_;
  18. QMap<QString, QStringList> Nicknames_;
  19. int LastIndex_;
  20. QMenu *AddMenu_;
  21. QAction *AddChannel_;
  22. QAction *AddServer_;
  23. public:
  24. IrcAccountConfigurationDialog (QWidget* = 0);
  25.  
  26. QMap<QString, QStringList> GetNicks ();
  27. void SetNicks (const QMap<QString, QStringList>&);
  28. private:
  29. QStringList GetNetworks () const;
  30. void SetNetworks (const QStringList&);
  31. public slots:
  32. void handleChangeServer (int);
  33. void handleAddServer (bool);
  34. void handleAddChannel (bool);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement