Changeset 2051


Ignore:
Timestamp:
05/22/07 01:27:58 (6 years ago)
Author:
alphaone
Message:
  • src/callbacks.c (moko_icon_view_selection_changed_cb):
  • src/main.c (handle_sigusr1):

Use the new moko_window_set_status_message functions to convey
information to the footer. I still kept all the dbus deps since
I'm not sure whether we still need it in the mainmenu.

Location:
trunk/src/target/OM-2007/applications/openmoko-mainmenu
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/target/OM-2007/applications/openmoko-mainmenu/ChangeLog

    r2044 r2051  
     12007-05-22  Daniel Willmann  <daniel@totalueberwachung.de> 
     2 
     3        * src/callbacks.c: 
     4        (moko_icon_view_selection_changed_cb): 
     5        * src/main.c: 
     6        (handle_sigusr1): 
     7 
     8                Use the new moko_window_set_status_message functions to convey 
     9                information to the footer. I still kept all the dbus deps since 
     10                I'm not sure whether we still need it in the mainmenu. 
     11 
    1122007-05-20  Stefan Schmidt <stefan@openmoko.org> 
    213 
  • trunk/src/target/OM-2007/applications/openmoko-mainmenu/src/callbacks.c

    r2043 r2051  
    2121 
    2222#include <libmokoui/moko-application.h> 
     23#include <libmokoui/moko-window.h> 
    2324#include <libmokoui/moko-finger-window.h> 
    2425#include <libmokoui/moko-finger-wheel.h> 
     
    109110 
    110111    if (!selected_item) 
     112    { 
     113        moko_window_set_status_message (fm->window, "Openmoko main menu"); 
    111114        return; 
     115    } 
    112116 
    113117    icon_view_model = moko_icon_view_get_model (iconview); 
     
    117121    if (text) 
    118122        { 
    119                 moko_dbus_send_message (text); 
     123                moko_window_set_status_message (fm->window, text); 
    120124        } 
    121125 
  • trunk/src/target/OM-2007/applications/openmoko-mainmenu/src/main.c

    r2043 r2051  
    2424 
    2525#include "main.h" 
     26 
     27#include <libmokoui/moko-window.h> 
    2628#include <sys/types.h> 
    2729#include <sys/stat.h> 
     
    4143  //gtk_window_present (GTK_WINDOW(mma->window)); 
    4244  g_debug ("Show finger menu"); 
    43   moko_dbus_send_message ("Openmoko main menu"); 
     45  moko_window_set_status_message (mma->fm->window, "Openmoko main menu"); 
    4446 
    4547  signal (SIGUSR1, handle_sigusr1); 
Note: See TracChangeset for help on using the changeset viewer.