#ifndef NEWSBOAT_FILEBROWSERFORMACTION_H_ #define NEWSBOAT_FILEBROWSERFORMACTION_H_ #include #include #include "configcontainer.h" #include "file_system.h" #include "formaction.h" #include "listwidget.h" #include "stflrichtext.h" namespace newsboat { class FileBrowserFormAction : public FormAction { public: FileBrowserFormAction(View&, std::string formstr, ConfigContainer* cfg); ~FileBrowserFormAction() override = default; void prepare() override; void init() override; const std::vector& get_keymap_hint() const override; void set_default_filename(const std::string& fn) { default_filename = fn; } std::string id() const override { return "filebrowser"; } std::string title() override; protected: std::string main_widget() const override { return "filename"; } private: bool process_operation(Operation op, const std::vector& args, BindingType bindingType = BindingType::BindKey) override; void update_title(const std::string& working_directory); void add_file(std::vector& id_at_position, std::string filename); std::string get_filename_suggestion(const std::string& s); std::vector id_at_position; std::vector lines; std::string get_formatted_filename(std::string filename, mode_t mode); LineView file_prompt_line; bool quit; std::string cwd; std::string default_filename; ListWidget files_list; View& view; }; } // namespace newsboat #endif /* NEWSBOAT_FILEBROWSERFORMACTION_H_ */