Changeset 36

Show
Ignore:
Timestamp:
11/02/07 19:32:25
Author:
pvanhoof
Message:
        • Attempt to have a custom header-view widget (for now, failed)
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ChangeLog

    r35 r36  
    55        * Added support for translations 
    66        * Don't show silly or obvious instructions in the instruction label 
     7        * Attempt to have a custom header-view widget (for now, failed) 
    78 
    892007-11-01  Philip Van Hoof  <pvanhoof@gnome.org> 
  • trunk/src/Makefile.am

    r26 r36  
    1919        tmut-shell-window.h \ 
    2020        tmut-shell-child.c \ 
    21         tmut-shell-child.h 
     21        tmut-shell-child.h \ 
     22        tmut-header-view.c \ 
     23        tmut-header-view.h \ 
     24        tmut-tny-gtk-msg-view.c \ 
     25        tmut-tny-gtk-msg-view.h 
    2226          
    2327 
  • trunk/src/tmut-msg-view.c

    r34 r36  
    2424#include <glib/gi18n-lib.h> 
    2525 
     26#include "tmut-header-view.h" 
     27#include "tmut-tny-gtk-msg-view.h" 
    2628#include "tmut-msg-view.h" 
     29 
    2730#include "tmut-shell-window.h" 
    2831#include "tmut-shell-child.h" 
    2932 
    30 #include <tny-gtk-msg-view.h> 
    3133 
    3234static GObjectClass *parent_class = NULL; 
     
    229231 
    230232        tmut_msg_view_set_view (TMUT_MSG_VIEW (instance), 
    231                 tny_gtk_msg_view_new ()); 
     233                tmut_tny_gtk_msg_view_new ()); 
    232234 
    233235        return; 
     
    266268 
    267269        return; 
     270} 
     271 
     272static TnyHeaderView* 
     273tmut_msg_view_create_header_view (TnyGtkMsgView *self) 
     274{ 
     275        return tmut_header_view_new (); 
    268276} 
    269277