mirror of https://gitlab.com/cppit/jucipp
2 changed files with 53 additions and 8 deletions
@ -0,0 +1,15 @@ |
|||||||
|
#include "window.h" |
||||||
|
#include "logging.h" |
||||||
|
|
||||||
|
class Juci : public Gtk::Application { |
||||||
|
public: |
||||||
|
Juci(): Gtk::Application("no.sout.juci", Gio::APPLICATION_HANDLES_COMMAND_LINE) {} |
||||||
|
|
||||||
|
int on_command_line(const Glib::RefPtr<Gio::ApplicationCommandLine> &cmd); |
||||||
|
void on_activate(); |
||||||
|
|
||||||
|
private: |
||||||
|
std::unique_ptr<Window> window; |
||||||
|
std::string directory; |
||||||
|
std::vector<std::string> files; |
||||||
|
}; |
||||||
Loading…
Reference in new issue