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.
780 lines
19 KiB
780 lines
19 KiB
16 years ago
|
#include <e.h>
|
||
|
#include "e_mod_main.h"
|
||
|
#if TIME_WITH_SYS_TIME
|
||
|
# include <sys/time.h>
|
||
|
# include <time.h>
|
||
|
#else
|
||
|
# if HAVE_SYS_TIME_H
|
||
|
# include <sys/time.h>
|
||
|
# else
|
||
|
# include <time.h>
|
||
|
# endif
|
||
|
#endif
|
||
|
#include <libmpd/libmpdclient.h>
|
||
|
|
||
|
#define MAX_SONG_LENGTH 255
|
||
|
|
||
|
/* Func Proto Requirements for Gadcon */
|
||
|
static E_Gadcon_Client *_gc_init (E_Gadcon * gc, const char *name,
|
||
|
const char *id, const char *style);
|
||
|
static void _gc_shutdown (E_Gadcon_Client * gcc);
|
||
15 years ago
|
static void _gc_orient (E_Gadcon_Client * gcc, E_Gadcon_Orient orient);
|
||
|
static char *_gc_label (E_Gadcon_Client_Class *client_class);
|
||
|
static Evas_Object *_gc_icon (E_Gadcon_Client_Class *client_class, Evas * evas);
|
||
|
static const char *_gc_id_new (E_Gadcon_Client_Class *client_class);
|
||
16 years ago
|
|
||
|
/* Module Protos */
|
||
|
static void _mpdule_cb_mouse_down (void *data, Evas * e, Evas_Object * obj,
|
||
|
void *event_info);
|
||
15 years ago
|
static void _mpdule_cb_mouse_in (void *data, Evas * e, Evas_Object * obj,
|
||
|
void *event_info);
|
||
|
static void _mpdule_cb_mouse_out (void *data, Evas * e, Evas_Object * obj,
|
||
|
void *event_info);
|
||
16 years ago
|
static void _mpdule_menu_cb_configure (void *data, E_Menu * m,
|
||
|
E_Menu_Item * mi);
|
||
|
static void _mpdule_menu_cb_post (void *data, E_Menu * m);
|
||
15 years ago
|
static void _mpdule_cb_play (void *data, Evas_Object * obj,
|
||
|
const char *emission, const char *source);
|
||
|
static void _mpdule_cb_stop (void *data, Evas_Object * obj,
|
||
|
const char *emission, const char *source);
|
||
|
static void _mpdule_cb_pause (void *data, Evas_Object * obj,
|
||
|
const char *emission, const char *source);
|
||
|
static void _mpdule_cb_next (void *data, Evas_Object * obj,
|
||
|
const char *emission, const char *source);
|
||
|
static void _mpdule_cb_previous (void *data, Evas_Object * obj,
|
||
|
const char *emission, const char *source);
|
||
16 years ago
|
static Config_Item *_mpdule_config_item_get (const char *id);
|
||
|
|
||
|
static E_Config_DD *conf_edd = NULL;
|
||
|
static E_Config_DD *conf_item_edd = NULL;
|
||
|
|
||
|
Config *mpdule_config = NULL;
|
||
|
|
||
|
/* Define the class and gadcon functions this module provides */
|
||
|
static const E_Gadcon_Client_Class _gc_class = {
|
||
|
GADCON_CLIENT_CLASS_VERSION,
|
||
15 years ago
|
"mpdule", {_gc_init, _gc_shutdown, _gc_orient, _gc_label, _gc_icon,
|
||
14 years ago
|
_gc_id_new, NULL, e_gadcon_site_is_not_toolbar},
|
||
16 years ago
|
E_GADCON_CLIENT_STYLE_PLAIN
|
||
|
};
|
||
|
|
||
|
typedef struct _Instance Instance;
|
||
|
struct _Instance
|
||
|
{
|
||
|
E_Gadcon_Client *gcc;
|
||
|
Evas_Object *mpdule;
|
||
16 years ago
|
Evas_Object *o_popup;
|
||
16 years ago
|
mpd_Connection *mpd;
|
||
|
Ecore_Timer *update_timer;
|
||
|
Config_Item *ci;
|
||
16 years ago
|
E_Gadcon_Popup *popup;
|
||
16 years ago
|
};
|
||
|
|
||
|
|
||
|
static void _mpdule_connect (Instance * inst);
|
||
|
static void _mpdule_disconnect (Instance * inst);
|
||
|
static void _mpdule_update_song (Instance * inst);
|
||
15 years ago
|
static int _mpdule_update_song_cb (void *data);
|
||
15 years ago
|
static void _mpdule_popup_destroy (Instance * inst);
|
||
16 years ago
|
|
||
|
static E_Gadcon_Client *
|
||
|
_gc_init (E_Gadcon * gc, const char *name, const char *id, const char *style)
|
||
|
{
|
||
16 years ago
|
Evas_Object *o, *o_popup;
|
||
16 years ago
|
E_Gadcon_Client *gcc;
|
||
16 years ago
|
Evas *evas;
|
||
16 years ago
|
Instance *inst;
|
||
|
char buf[4096];
|
||
16 years ago
|
int w, h;
|
||
16 years ago
|
|
||
|
inst = E_NEW (Instance, 1);
|
||
15 years ago
|
|
||
16 years ago
|
inst->ci = _mpdule_config_item_get (id);
|
||
|
if (!inst->ci->id)
|
||
15 years ago
|
inst->ci->id = eina_stringshare_add (id);
|
||
16 years ago
|
|
||
|
o = edje_object_add (gc->evas);
|
||
|
snprintf (buf, sizeof (buf), "%s/mpdule.edj",
|
||
|
e_module_dir_get (mpdule_config->module));
|
||
|
if (!e_theme_edje_object_set
|
||
|
(o, "base/theme/modules/mpdule", "modules/mpdule/main"))
|
||
|
edje_object_file_set (o, buf, "modules/mpdule/main");
|
||
|
evas_object_show (o);
|
||
|
|
||
|
gcc = e_gadcon_client_new (gc, name, id, style, o);
|
||
|
gcc->data = inst;
|
||
|
inst->gcc = gcc;
|
||
|
inst->mpdule = o;
|
||
|
|
||
14 years ago
|
inst->popup = e_gadcon_popup_new (inst->gcc);
|
||
16 years ago
|
|
||
|
evas = inst->popup->win->evas;
|
||
|
o_popup = edje_object_add (evas);
|
||
|
if (!e_theme_edje_object_set
|
||
|
(o_popup, "base/theme/modules/mpdule", "modules/mpdule/popup"))
|
||
|
edje_object_file_set (o_popup, buf, "modules/mpdule/popup");
|
||
|
evas_object_show (o_popup);
|
||
15 years ago
|
e_gadcon_popup_content_set (inst->popup, o_popup);
|
||
16 years ago
|
edje_object_size_min_calc (o_popup, &w, &h);
|
||
|
inst->o_popup = o_popup;
|
||
|
|
||
16 years ago
|
evas_object_event_callback_add (o, EVAS_CALLBACK_MOUSE_DOWN,
|
||
|
_mpdule_cb_mouse_down, inst);
|
||
15 years ago
|
evas_object_event_callback_add (inst->mpdule, EVAS_CALLBACK_MOUSE_IN,
|
||
|
_mpdule_cb_mouse_in, inst);
|
||
|
evas_object_event_callback_add (inst->mpdule, EVAS_CALLBACK_MOUSE_OUT,
|
||
|
_mpdule_cb_mouse_out, inst);
|
||
|
edje_object_signal_callback_add (o, "mpdule,play", "", _mpdule_cb_play,
|
||
|
inst);
|
||
|
edje_object_signal_callback_add (o, "mpdule,stop", "", _mpdule_cb_stop,
|
||
|
inst);
|
||
|
edje_object_signal_callback_add (o, "mpdule,pause", "", _mpdule_cb_pause,
|
||
|
inst);
|
||
|
edje_object_signal_callback_add (o, "mpdule,next", "", _mpdule_cb_next,
|
||
|
inst);
|
||
|
edje_object_signal_callback_add (o, "mpdule,previous", "",
|
||
|
_mpdule_cb_previous, inst);
|
||
|
edje_object_signal_callback_add (o_popup, "mpdule,play", "",
|
||
|
_mpdule_cb_play, inst);
|
||
|
edje_object_signal_callback_add (o_popup, "mpdule,stop", "",
|
||
|
_mpdule_cb_stop, inst);
|
||
|
edje_object_signal_callback_add (o_popup, "mpdule,pause", "",
|
||
|
_mpdule_cb_pause, inst);
|
||
|
edje_object_signal_callback_add (o_popup, "mpdule,next", "",
|
||
|
_mpdule_cb_next, inst);
|
||
|
edje_object_signal_callback_add (o_popup, "mpdule,previous", "",
|
||
|
_mpdule_cb_previous, inst);
|
||
|
_mpdule_connect (inst);
|
||
|
_mpdule_update_song (inst);
|
||
15 years ago
|
inst->update_timer = ecore_timer_add (inst->ci->poll_time,
|
||
15 years ago
|
_mpdule_update_song_cb, inst);
|
||
16 years ago
|
|
||
|
mpdule_config->instances =
|
||
15 years ago
|
eina_list_append (mpdule_config->instances, inst);
|
||
16 years ago
|
return gcc;
|
||
|
}
|
||
|
|
||
|
static void
|
||
|
_gc_shutdown (E_Gadcon_Client * gcc)
|
||
|
{
|
||
|
Instance *inst;
|
||
|
|
||
|
inst = gcc->data;
|
||
|
if (inst->update_timer)
|
||
15 years ago
|
ecore_timer_del (inst->update_timer);
|
||
|
_mpdule_disconnect (inst);
|
||
16 years ago
|
mpdule_config->instances =
|
||
15 years ago
|
eina_list_remove (mpdule_config->instances, inst);
|
||
16 years ago
|
|
||
|
evas_object_event_callback_del (inst->mpdule, EVAS_CALLBACK_MOUSE_DOWN,
|
||
|
_mpdule_cb_mouse_down);
|
||
15 years ago
|
evas_object_event_callback_del (inst->mpdule, EVAS_CALLBACK_MOUSE_IN,
|
||
|
_mpdule_cb_mouse_in);
|
||
|
evas_object_event_callback_del (inst->mpdule, EVAS_CALLBACK_MOUSE_OUT,
|
||
|
_mpdule_cb_mouse_out);
|
||
|
_mpdule_popup_destroy (inst);
|
||
16 years ago
|
evas_object_del (inst->mpdule);
|
||
|
free (inst);
|
||
|
inst = NULL;
|
||
|
}
|
||
|
|
||
|
static void
|
||
15 years ago
|
_gc_orient (E_Gadcon_Client * gcc, E_Gadcon_Orient orient)
|
||
16 years ago
|
{
|
||
|
Instance *inst;
|
||
|
Evas_Coord mw, mh;
|
||
|
|
||
|
inst = gcc->data;
|
||
|
edje_object_size_min_calc (inst->mpdule, &mw, &mh);
|
||
|
e_gadcon_client_min_size_set (gcc, mw, mh);
|
||
|
}
|
||
|
|
||
|
static char *
|
||
15 years ago
|
_gc_label (E_Gadcon_Client_Class *client_class)
|
||
16 years ago
|
{
|
||
|
return D_ ("MPDule");
|
||
|
}
|
||
|
|
||
|
static Evas_Object *
|
||
15 years ago
|
_gc_icon (E_Gadcon_Client_Class *client_class, Evas * evas)
|
||
16 years ago
|
{
|
||
|
Evas_Object *o;
|
||
|
char buf[4096];
|
||
|
|
||
|
o = edje_object_add (evas);
|
||
|
snprintf (buf, sizeof (buf), "%s/e-module-mpdule.edj",
|
||
|
e_module_dir_get (mpdule_config->module));
|
||
|
edje_object_file_set (o, buf, "icon");
|
||
|
return o;
|
||
|
}
|
||
|
|
||
|
static const char *
|
||
15 years ago
|
_gc_id_new (E_Gadcon_Client_Class *client_class)
|
||
16 years ago
|
{
|
||
15 years ago
|
Config_Item *ci;
|
||
16 years ago
|
|
||
15 years ago
|
ci = _mpdule_config_item_get (NULL);
|
||
|
return ci->id;
|
||
16 years ago
|
}
|
||
|
|
||
|
static void
|
||
|
_mpdule_cb_mouse_down (void *data, Evas * e, Evas_Object * obj,
|
||
|
void *event_info)
|
||
|
{
|
||
|
Instance *inst;
|
||
|
Evas_Event_Mouse_Down *ev;
|
||
|
|
||
|
inst = data;
|
||
|
ev = event_info;
|
||
|
if ((ev->button == 3) && (!mpdule_config->menu))
|
||
|
{
|
||
|
E_Menu *mn;
|
||
|
E_Menu_Item *mi;
|
||
|
int x, y, w, h;
|
||
|
|
||
|
mn = e_menu_new ();
|
||
|
e_menu_post_deactivate_callback_set (mn, _mpdule_menu_cb_post, inst);
|
||
|
mpdule_config->menu = mn;
|
||
|
|
||
|
mi = e_menu_item_new (mn);
|
||
|
e_menu_item_label_set (mi, D_ ("Configuration"));
|
||
14 years ago
|
e_util_menu_item_theme_icon_set(mi, "preferences-system");
|
||
16 years ago
|
e_menu_item_callback_set (mi, _mpdule_menu_cb_configure, inst);
|
||
|
|
||
|
mi = e_menu_item_new (mn);
|
||
|
e_menu_item_separator_set (mi, 1);
|
||
|
|
||
|
e_gadcon_client_util_menu_items_append (inst->gcc, mn, 0);
|
||
|
e_gadcon_canvas_zone_geometry_get (inst->gcc->gadcon, &x, &y, &w, &h);
|
||
|
e_menu_activate_mouse (mn,
|
||
|
e_util_zone_current_get (e_manager_current_get
|
||
|
()), x + ev->output.x,
|
||
|
y + ev->output.y, 1, 1,
|
||
|
E_MENU_POP_DIRECTION_DOWN, ev->timestamp);
|
||
|
evas_event_feed_mouse_up (inst->gcc->gadcon->evas, ev->button,
|
||
|
EVAS_BUTTON_NONE, ev->timestamp, NULL);
|
||
15 years ago
|
}
|
||
|
else if (ev->button == 1)
|
||
|
{
|
||
|
//e_gadcon_popup_toggle_pinned(inst->popup);
|
||
16 years ago
|
}
|
||
|
}
|
||
|
|
||
16 years ago
|
|
||
15 years ago
|
static void
|
||
|
_mpdule_cb_mouse_in (void *data, Evas * e, Evas_Object * obj,
|
||
|
void *event_info)
|
||
16 years ago
|
{
|
||
15 years ago
|
Instance *inst;
|
||
|
E_Gadcon_Popup *popup;
|
||
|
|
||
|
if (!(inst = data))
|
||
|
return;
|
||
|
popup = inst->popup;
|
||
|
e_gadcon_popup_show (inst->popup);
|
||
16 years ago
|
}
|
||
|
|
||
15 years ago
|
static void
|
||
|
_mpdule_cb_mouse_out (void *data, Evas * e, Evas_Object * obj,
|
||
|
void *event_info)
|
||
16 years ago
|
{
|
||
15 years ago
|
Instance *inst;
|
||
|
E_Gadcon_Popup *popup;
|
||
16 years ago
|
|
||
15 years ago
|
if (!(inst = data))
|
||
|
return;
|
||
|
popup = inst->popup;
|
||
|
e_gadcon_popup_hide (inst->popup);
|
||
16 years ago
|
}
|
||
|
|
||
16 years ago
|
static void
|
||
|
_mpdule_menu_cb_post (void *data, E_Menu * m)
|
||
|
{
|
||
|
if (!mpdule_config->menu)
|
||
|
return;
|
||
|
e_object_del (E_OBJECT (mpdule_config->menu));
|
||
|
mpdule_config->menu = NULL;
|
||
|
}
|
||
|
|
||
|
static void
|
||
|
_mpdule_menu_cb_configure (void *data, E_Menu * m, E_Menu_Item * mi)
|
||
|
{
|
||
|
Instance *inst;
|
||
15 years ago
|
|
||
16 years ago
|
inst = data;
|
||
|
_config_mpdule_module (inst->ci);
|
||
|
}
|
||
|
|
||
|
void
|
||
15 years ago
|
_mpdule_config_updated (Config_Item * ci)
|
||
16 years ago
|
{
|
||
15 years ago
|
Eina_List *l;
|
||
16 years ago
|
|
||
|
if (!mpdule_config)
|
||
|
return;
|
||
|
for (l = mpdule_config->instances; l; l = l->next)
|
||
|
{
|
||
|
Instance *inst;
|
||
|
|
||
|
inst = l->data;
|
||
15 years ago
|
if (inst->ci != ci)
|
||
16 years ago
|
continue;
|
||
15 years ago
|
_mpdule_disconnect (inst);
|
||
|
_mpdule_connect (inst);
|
||
|
_mpdule_update_song (inst);
|
||
16 years ago
|
if (inst->update_timer)
|
||
15 years ago
|
ecore_timer_interval_set (inst->update_timer, ci->poll_time);
|
||
16 years ago
|
else
|
||
15 years ago
|
inst->update_timer =
|
||
15 years ago
|
ecore_timer_add (ci->poll_time, _mpdule_update_song_cb,
|
||
15 years ago
|
inst);
|
||
16 years ago
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
15 years ago
|
static void
|
||
|
_mpdule_cb_play (void *data, Evas_Object * obj, const char *emission,
|
||
|
const char *source)
|
||
15 years ago
|
{
|
||
|
Instance *inst;
|
||
|
mpd_Connection *mpd;
|
||
|
|
||
|
inst = data;
|
||
|
mpd = inst->mpd;
|
||
15 years ago
|
mpd_sendPlayCommand (mpd, -1);
|
||
15 years ago
|
}
|
||
|
|
||
15 years ago
|
static void
|
||
|
_mpdule_cb_previous (void *data, Evas_Object * obj, const char *emission,
|
||
|
const char *source)
|
||
15 years ago
|
{
|
||
|
Instance *inst;
|
||
|
mpd_Connection *mpd;
|
||
|
|
||
|
inst = data;
|
||
|
mpd = inst->mpd;
|
||
15 years ago
|
mpd_sendPrevCommand (mpd);
|
||
15 years ago
|
}
|
||
|
|
||
15 years ago
|
static void
|
||
|
_mpdule_cb_next (void *data, Evas_Object * obj, const char *emission,
|
||
|
const char *source)
|
||
15 years ago
|
{
|
||
|
Instance *inst;
|
||
|
mpd_Connection *mpd;
|
||
|
|
||
|
inst = data;
|
||
|
mpd = inst->mpd;
|
||
15 years ago
|
mpd_sendNextCommand (mpd);
|
||
15 years ago
|
}
|
||
|
|
||
15 years ago
|
static void
|
||
|
_mpdule_cb_stop (void *data, Evas_Object * obj, const char *emission,
|
||
|
const char *source)
|
||
15 years ago
|
{
|
||
|
Instance *inst;
|
||
|
mpd_Connection *mpd;
|
||
|
|
||
|
inst = data;
|
||
|
mpd = inst->mpd;
|
||
15 years ago
|
mpd_sendStopCommand (mpd);
|
||
15 years ago
|
}
|
||
|
|
||
15 years ago
|
static void
|
||
|
_mpdule_cb_pause (void *data, Evas_Object * obj, const char *emission,
|
||
|
const char *source)
|
||
15 years ago
|
{
|
||
|
Instance *inst;
|
||
|
mpd_Connection *mpd;
|
||
|
|
||
|
inst = data;
|
||
|
mpd = inst->mpd;
|
||
15 years ago
|
mpd_sendPauseCommand (mpd, 1);
|
||
15 years ago
|
}
|
||
16 years ago
|
|
||
|
static Config_Item *
|
||
|
_mpdule_config_item_get (const char *id)
|
||
|
{
|
||
15 years ago
|
Eina_List *l;
|
||
16 years ago
|
Config_Item *ci;
|
||
15 years ago
|
char buf[128];
|
||
|
|
||
|
|
||
|
if (!id)
|
||
|
{
|
||
|
int num = 0;
|
||
|
|
||
|
/* Create id */
|
||
|
if (mpdule_config->items)
|
||
|
{
|
||
|
const char *p;
|
||
15 years ago
|
ci = eina_list_last (mpdule_config->items)->data;
|
||
15 years ago
|
p = strrchr (ci->id, '.');
|
||
|
if (p)
|
||
|
num = atoi (p + 1) + 1;
|
||
|
}
|
||
|
snprintf (buf, sizeof (buf), "%s.%d", _gc_class.name, num);
|
||
|
id = buf;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
for (l = mpdule_config->items; l; l = l->next)
|
||
|
{
|
||
|
ci = l->data;
|
||
|
if (!ci->id)
|
||
|
continue;
|
||
|
if (!strcmp (ci->id, id))
|
||
|
return ci;
|
||
|
}
|
||
|
}
|
||
16 years ago
|
|
||
|
ci = E_NEW (Config_Item, 1);
|
||
15 years ago
|
ci->id = eina_stringshare_add (id);
|
||
16 years ago
|
ci->poll_time = 1.0;
|
||
15 years ago
|
ci->hostname = eina_stringshare_add ("localhost");
|
||
16 years ago
|
ci->port = 6600;
|
||
|
|
||
15 years ago
|
mpdule_config->items = eina_list_append (mpdule_config->items, ci);
|
||
16 years ago
|
return ci;
|
||
|
}
|
||
|
|
||
|
EAPI E_Module_Api e_modapi = {
|
||
|
E_MODULE_API_VERSION,
|
||
|
"MPDule"
|
||
|
};
|
||
|
|
||
|
static void
|
||
15 years ago
|
_mpdule_connect (Instance * inst)
|
||
16 years ago
|
{
|
||
15 years ago
|
mpd_Connection *mpd;
|
||
|
Config_Item *ci;
|
||
16 years ago
|
|
||
15 years ago
|
ci = inst->ci;
|
||
|
mpd = mpd_newConnection (ci->hostname, ci->port, 3.0);
|
||
|
inst->mpd = mpd;
|
||
16 years ago
|
}
|
||
|
|
||
|
static void
|
||
15 years ago
|
_mpdule_disconnect (Instance * inst)
|
||
16 years ago
|
{
|
||
15 years ago
|
mpd_Connection *mpd;
|
||
|
|
||
|
if (inst->mpd)
|
||
|
{
|
||
|
mpd = inst->mpd;
|
||
|
mpd_closeConnection (mpd);
|
||
|
inst->mpd = NULL;
|
||
|
}
|
||
16 years ago
|
}
|
||
|
|
||
15 years ago
|
static int
|
||
15 years ago
|
_mpdule_update_song_cb (void *data)
|
||
16 years ago
|
{
|
||
15 years ago
|
Instance *inst;
|
||
|
|
||
|
inst = data;
|
||
|
_mpdule_update_song (inst);
|
||
15 years ago
|
return 1;
|
||
16 years ago
|
}
|
||
|
|
||
|
static void
|
||
15 years ago
|
_mpdule_update_song (Instance * inst)
|
||
16 years ago
|
{
|
||
15 years ago
|
mpd_Connection *mpd;
|
||
|
Evas_Object *mpdule;
|
||
|
Evas_Object *o_popup;
|
||
|
|
||
|
if (!inst->mpd)
|
||
|
return;
|
||
|
mpd = inst->mpd;
|
||
|
mpdule = inst->mpdule;
|
||
|
o_popup = inst->o_popup;
|
||
|
mpd_sendStatusCommand (mpd);
|
||
|
if (mpd->error == 0)
|
||
|
{
|
||
|
mpd_Status *status = mpd_getStatus (mpd);
|
||
|
|
||
|
if (status)
|
||
16 years ago
|
{
|
||
15 years ago
|
if (status->state == MPD_STATUS_STATE_UNKNOWN)
|
||
|
{
|
||
|
edje_object_part_text_set (mpdule, "mpdule.status",
|
||
|
D_ ("Unknown"));
|
||
|
edje_object_part_text_set (o_popup, "mpdule.status",
|
||
|
D_ ("Unknown"));
|
||
|
}
|
||
|
else if (status->state == MPD_STATUS_STATE_STOP)
|
||
|
{
|
||
|
edje_object_part_text_set (mpdule, "mpdule.status",
|
||
|
D_ ("Stopped"));
|
||
|
edje_object_part_text_set (o_popup, "mpdule.status",
|
||
|
D_ ("Stopped"));
|
||
|
}
|
||
|
else if (status->state == MPD_STATUS_STATE_PLAY)
|
||
|
{
|
||
|
edje_object_part_text_set (mpdule, "mpdule.status",
|
||
|
D_ ("Playing"));
|
||
|
edje_object_part_text_set (o_popup, "mpdule.status",
|
||
|
D_ ("Playing"));
|
||
|
}
|
||
|
else if (status->state == MPD_STATUS_STATE_PAUSE)
|
||
|
{
|
||
|
edje_object_part_text_set (mpdule, "mpdule.status",
|
||
|
D_ ("Paused"));
|
||
|
edje_object_part_text_set (o_popup, "mpdule.status",
|
||
|
D_ ("Paused"));
|
||
|
}
|
||
|
|
||
|
if (status->state > MPD_STATUS_STATE_STOP)
|
||
|
{
|
||
|
mpd_sendCurrentSongCommand (mpd);
|
||
|
mpd_InfoEntity *entity = NULL;
|
||
|
|
||
|
while ((entity = mpd_getNextInfoEntity (mpd)))
|
||
16 years ago
|
{
|
||
15 years ago
|
if (entity->type == MPD_INFO_ENTITY_TYPE_SONG &&
|
||
|
entity->info.song->id == status->songid)
|
||
|
{
|
||
|
mpd_Song *song = entity->info.song;
|
||
|
|
||
|
if (song->artist)
|
||
16 years ago
|
{
|
||
15 years ago
|
edje_object_part_text_set (mpdule, "mpdule.artist",
|
||
|
song->artist);
|
||
|
edje_object_part_text_set (o_popup, "mpdule.artist",
|
||
|
song->artist);
|
||
16 years ago
|
}
|
||
15 years ago
|
else
|
||
16 years ago
|
{
|
||
15 years ago
|
edje_object_part_text_set (mpdule, "mpdule.artist",
|
||
|
"");
|
||
|
edje_object_part_text_set (o_popup, "mpdule.artist",
|
||
|
"");
|
||
16 years ago
|
}
|
||
15 years ago
|
if (song->title)
|
||
16 years ago
|
{
|
||
15 years ago
|
edje_object_part_text_set (mpdule, "mpdule.title",
|
||
|
song->title);
|
||
|
edje_object_part_text_set (o_popup, "mpdule.title",
|
||
|
song->title);
|
||
16 years ago
|
}
|
||
15 years ago
|
else
|
||
16 years ago
|
{
|
||
15 years ago
|
edje_object_part_text_set (mpdule, "mpdule.title",
|
||
|
"");
|
||
|
edje_object_part_text_set (o_popup, "mpdule.title",
|
||
|
"");
|
||
16 years ago
|
}
|
||
15 years ago
|
if (song->album)
|
||
|
{
|
||
|
edje_object_part_text_set (mpdule, "mpdule.album",
|
||
|
song->album);
|
||
|
edje_object_part_text_set (o_popup, "mpdule.album",
|
||
|
song->album);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
edje_object_part_text_set (mpdule, "mpdule.album",
|
||
|
"");
|
||
|
edje_object_part_text_set (o_popup, "mpdule.album",
|
||
|
"");
|
||
|
}
|
||
|
if (song->track)
|
||
|
{
|
||
|
edje_object_part_text_set (mpdule, "mpdule.track",
|
||
|
song->track);
|
||
|
edje_object_part_text_set (o_popup, "mpdule.track",
|
||
|
song->track);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
edje_object_part_text_set (mpdule, "mpdule.track",
|
||
|
"");
|
||
|
edje_object_part_text_set (o_popup, "mpdule.track",
|
||
|
"");
|
||
|
}
|
||
|
if (song->date)
|
||
|
{
|
||
|
edje_object_part_text_set (mpdule, "mpdule.date",
|
||
|
song->date);
|
||
|
edje_object_part_text_set (o_popup, "mpdule.date",
|
||
|
song->date);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
edje_object_part_text_set (mpdule, "mpdule.date",
|
||
|
"");
|
||
|
edje_object_part_text_set (o_popup, "mpdule.date",
|
||
|
"");
|
||
|
}
|
||
|
if (song->genre)
|
||
|
{
|
||
|
edje_object_part_text_set (mpdule, "mpdule.genre",
|
||
|
song->genre);
|
||
|
edje_object_part_text_set (o_popup, "mpdule.genre",
|
||
|
song->genre);
|
||
|
}
|
||
|
else
|
||
16 years ago
|
{
|
||
15 years ago
|
edje_object_part_text_set (mpdule, "mpdule.genre",
|
||
|
"");
|
||
|
edje_object_part_text_set (o_popup, "mpdule.genre",
|
||
|
"");
|
||
16 years ago
|
}
|
||
15 years ago
|
if (song->composer)
|
||
|
{
|
||
|
edje_object_part_text_set (mpdule,
|
||
|
"mpdule.composer",
|
||
|
song->composer);
|
||
|
edje_object_part_text_set (o_popup,
|
||
|
"mpdule.composer",
|
||
|
song->composer);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
edje_object_part_text_set (mpdule,
|
||
|
"mpdule.composer", "");
|
||
|
edje_object_part_text_set (o_popup,
|
||
|
"mpdule.composer", "");
|
||
|
}
|
||
|
if (song->time)
|
||
|
{
|
||
|
//char * songtime;
|
||
|
//sprintf(songtime, "%i", song->time);
|
||
|
//edje_object_part_text_set (mpdule, "mpdule.time", songtime);
|
||
|
//edje_object_part_text_set (o_popup, "mpdule.time", songtime);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
edje_object_part_text_set (mpdule, "mpdule.time",
|
||
|
"");
|
||
|
edje_object_part_text_set (o_popup, "mpdule.time",
|
||
|
"");
|
||
|
}
|
||
|
if (song->file)
|
||
|
{
|
||
|
edje_object_part_text_set (mpdule, "mpdule.file",
|
||
|
song->file);
|
||
|
edje_object_part_text_set (o_popup, "mpdule.file",
|
||
|
song->file);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
edje_object_part_text_set (mpdule, "mpdule.file",
|
||
|
"");
|
||
|
edje_object_part_text_set (o_popup, "mpdule.file",
|
||
|
"");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
mpd_freeInfoEntity (entity);
|
||
16 years ago
|
}
|
||
15 years ago
|
}
|
||
|
|
||
|
mpd_freeStatus (status);
|
||
16 years ago
|
}
|
||
15 years ago
|
}
|
||
|
else
|
||
|
{
|
||
|
_mpdule_disconnect (inst);
|
||
|
_mpdule_connect (inst);
|
||
|
}
|
||
16 years ago
|
}
|
||
|
|
||
|
EAPI void *
|
||
|
e_modapi_init (E_Module * m)
|
||
|
{
|
||
16 years ago
|
char buf[4096];
|
||
|
|
||
|
snprintf (buf, sizeof (buf), "%s/locale", e_module_dir_get (m));
|
||
|
bindtextdomain (PACKAGE, buf);
|
||
16 years ago
|
bind_textdomain_codeset (PACKAGE, "UTF-8");
|
||
|
|
||
|
conf_item_edd = E_CONFIG_DD_NEW ("MPDule_Config_Item", Config_Item);
|
||
|
#undef T
|
||
|
#undef D
|
||
|
#define T Config_Item
|
||
|
#define D conf_item_edd
|
||
|
E_CONFIG_VAL (D, T, id, STR);
|
||
|
E_CONFIG_VAL (D, T, poll_time, DOUBLE);
|
||
|
E_CONFIG_VAL (D, T, hostname, STR);
|
||
|
E_CONFIG_VAL (D, T, port, INT);
|
||
|
|
||
|
conf_edd = E_CONFIG_DD_NEW ("MPDule_Config", Config);
|
||
|
#undef T
|
||
|
#undef D
|
||
|
#define T Config
|
||
|
#define D conf_edd
|
||
|
E_CONFIG_LIST (D, T, items, conf_item_edd);
|
||
|
|
||
|
mpdule_config = e_config_domain_load ("module.mpdule", conf_edd);
|
||
|
if (!mpdule_config)
|
||
|
{
|
||
|
Config_Item *ci;
|
||
|
|
||
|
mpdule_config = E_NEW (Config, 1);
|
||
|
|
||
|
ci = E_NEW (Config_Item, 1);
|
||
15 years ago
|
ci->id = eina_stringshare_add ("0");
|
||
16 years ago
|
ci->poll_time = 1.0;
|
||
15 years ago
|
ci->hostname = eina_stringshare_add ("localhost");
|
||
16 years ago
|
ci->port = 6600;
|
||
|
|
||
15 years ago
|
mpdule_config->items = eina_list_append (mpdule_config->items, ci);
|
||
16 years ago
|
}
|
||
|
mpdule_config->module = m;
|
||
|
|
||
|
e_gadcon_provider_register (&_gc_class);
|
||
|
return m;
|
||
|
}
|
||
|
|
||
|
EAPI int
|
||
|
e_modapi_shutdown (E_Module * m)
|
||
|
{
|
||
|
mpdule_config->module = NULL;
|
||
|
e_gadcon_provider_unregister (&_gc_class);
|
||
|
|
||
|
if (mpdule_config->config_dialog)
|
||
|
e_object_del (E_OBJECT (mpdule_config->config_dialog));
|
||
|
if (mpdule_config->menu)
|
||
|
{
|
||
|
e_menu_post_deactivate_callback_set (mpdule_config->menu, NULL, NULL);
|
||
|
e_object_del (E_OBJECT (mpdule_config->menu));
|
||
|
mpdule_config->menu = NULL;
|
||
|
}
|
||
|
|
||
|
while (mpdule_config->items)
|
||
|
{
|
||
|
Config_Item *ci;
|
||
|
|
||
|
ci = mpdule_config->items->data;
|
||
|
mpdule_config->items =
|
||
15 years ago
|
eina_list_remove_list (mpdule_config->items, mpdule_config->items);
|
||
16 years ago
|
if (ci->id)
|
||
15 years ago
|
eina_stringshare_del (ci->id);
|
||
16 years ago
|
free (ci);
|
||
|
ci = NULL;
|
||
|
}
|
||
|
|
||
|
free (mpdule_config);
|
||
|
mpdule_config = NULL;
|
||
|
E_CONFIG_DD_FREE (conf_item_edd);
|
||
|
E_CONFIG_DD_FREE (conf_edd);
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
EAPI int
|
||
|
e_modapi_save (E_Module * m)
|
||
|
{
|
||
|
e_config_domain_save ("module.mpdule", conf_edd, mpdule_config);
|
||
|
return 1;
|
||
|
}
|
||
16 years ago
|
|
||
|
static void
|
||
15 years ago
|
_mpdule_popup_destroy (Instance * inst)
|
||
16 years ago
|
{
|
||
15 years ago
|
if (!inst->popup)
|
||
|
return;
|
||
|
e_object_del (E_OBJECT (inst->popup));
|
||
16 years ago
|
}
|