mirror of https://gitlab.com/cppit/jucipp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
448 B
20 lines
448 B
|
11 years ago
|
#ifndef JUCI_JUCI_H_
|
||
|
|
#define JUCI_JUCI_H_
|
||
|
|
|
||
|
11 years ago
|
#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;
|
||
|
|
};
|
||
|
11 years ago
|
|
||
|
|
#endif // JUCI_JUCI_H_
|