X-Git-Url: http://git.maemo.org/git/?p=modest;a=blobdiff_plain;f=src%2Fgtk%2Fmodest-ui-message-viewer.c;h=5406e7aed434c80b6b382e853ddac074ff2baba3;hp=4a50fbb15a1561836c1a5fefcbe271cb9202d810;hb=827194381f5f0c122a119b9d685708f94a24927d;hpb=6eb21a13a54773294a98603f0d11310b33f4ecda diff --git a/src/gtk/modest-ui-message-viewer.c b/src/gtk/modest-ui-message-viewer.c index 4a50fbb..5406e7a 100644 --- a/src/gtk/modest-ui-message-viewer.c +++ b/src/gtk/modest-ui-message-viewer.c @@ -1,3 +1,33 @@ +/* Copyright (c) 2006, Nokia Corporation + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * Neither the name of the Nokia Corporation nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER + * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + + #include #include #include @@ -18,9 +48,9 @@ #include "../modest-identity-mgr.h" #include "../modest-tny-account-store.h" -#include "../modest-tny-folder-tree-view.h" -#include "../modest-tny-header-tree-view.h" -#include "../modest-tny-msg-view.h" +#include "../widgets/modest-folder-view.h" +#include "../widgets/modest-header-view.h" +#include "../widgets/modest-msg-view.h" #include "../modest-tny-transport-actions.h" #include "../modest-tny-store-actions.h" @@ -104,7 +134,7 @@ open_message_viewer_window(ModestUI *modest_ui) GtkTreeModel *model; GtkTreeIter iter; GtkScrolledWindow *scroll; - ModestTnyHeaderTreeView *header_view; + ModestHeaderView *header_view; TnyMsgHeaderIface *header; const TnyMsgFolderIface *folder; TnyMsgIface *msg; @@ -115,8 +145,8 @@ open_message_viewer_window(ModestUI *modest_ui) priv = MODEST_UI_GET_PRIVATE(modest_ui); /* FIXME: maybe use seperate viewer defaults? */ - height = modest_conf_get_int (priv->modest_conf, MODEST_CONF_EDIT_WINDOW_HEIGHT, NULL); - width = modest_conf_get_int (priv->modest_conf, MODEST_CONF_EDIT_WINDOW_WIDTH, NULL); + height = modest_conf_get_int (priv->modest_conf, MODEST_EDIT_WINDOW_HEIGHT, NULL); + width = modest_conf_get_int (priv->modest_conf, MODEST_EDIT_WINDOW_WIDTH, NULL); paned = glade_xml_get_widget (priv->glade_xml,"mail_paned"); g_return_if_fail (paned); @@ -124,7 +154,7 @@ open_message_viewer_window(ModestUI *modest_ui) scroll = GTK_SCROLLED_WINDOW(gtk_paned_get_child1 (GTK_PANED(paned))); g_return_if_fail (scroll); - header_view = MODEST_TNY_HEADER_TREE_VIEW(gtk_bin_get_child (GTK_BIN(scroll))); + header_view = MODEST_HEADER_VIEW(gtk_bin_get_child (GTK_BIN(scroll))); g_return_if_fail (header_view); sel = gtk_tree_view_get_selection (GTK_TREE_VIEW(header_view));