ocarina/include/gui/ocarina.h
Anna Schumaker ea49b374ee gui: Remove gui.cpp
This file doesn't do anything anymore, so move the init functions into
main.cpp and remove the file.

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
2015-01-15 09:40:17 -05:00

42 lines
702 B
C++

/*
* Copyright 2014 (c) Anna Schumaker.
*/
#ifndef OCARINA_H
#define OCARINA_H
#include <core/queue.h>
#include <lib/lib.h>
/* collection_mgr.cpp */
void collection_mgr_init();
/* main.cpp */
Gtk::Window *ocarina_init(int *, char ***);
void connect_button(const std::string &, void (*func)());
void on_pq_created(Queue *, unsigned int);
void on_track_loaded(Track *);
void post_init_queue_tabs();
/* gst.cpp */
void on_next();
void on_toggle();
void init_gst(int *, char ***);
void quit_gst();
/* window.cpp */
Gtk::Window *window_init();
#ifdef CONFIG_TEST
void do_collection_delete();
void on_collection_toggled(const Glib::ustring &);
#endif /* CONFIG_TEST */
#endif /* OCARINA_H */