argdialog.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #ifndef ARGDIALOG_H
  2. #define ARGDIALOG_H
  3. #include <QDialog>
  4. #include <QFileDialog>
  5. #include <QPushButton>
  6. #include <QFile>
  7. #include <string_view>
  8. #include <QMessageBox>
  9. namespace Args {
  10. const QString DESCRIPTION_TYPE = "description";
  11. const QString HASHTAG_TYPE = "hashtag";
  12. }
  13. typedef struct KFile {
  14. std::string_view name;
  15. std::string_view path;
  16. } KFile;
  17. typedef struct Task{
  18. QString time;
  19. int mask;
  20. std::vector<std::string> args;
  21. } Task;
  22. typedef struct IGPost {
  23. std::string description;
  24. std::string datetime;
  25. std::string promote_share;
  26. std::string link_in_bio;
  27. std::vector<std::string> hashtags;
  28. std::vector<std::string> requested_by;
  29. const char* requested_by_phrase = "The phrase was requested by ";
  30. KFile video;
  31. } IGPost;
  32. namespace Ui {
  33. class ArgDialog;
  34. }
  35. class ArgDialog : public QDialog
  36. {
  37. Q_OBJECT
  38. public:
  39. explicit ArgDialog(QWidget *parent = nullptr);
  40. ~ArgDialog();
  41. signals:
  42. void uploadFile(QByteArray bytes);
  43. private:
  44. void clearPost();
  45. void clearTask();
  46. void addHashtag(QString tag);
  47. Ui::ArgDialog *ui;
  48. void addItem(QString value, QString type);
  49. Task m_task;
  50. IGPost m_ig_post;
  51. };
  52. #endif // ARGDIALOG_H