Re: [Nautilus-list] Text view Patch
- From: Peter Snyder <kafer77a ameritech net>
- To: Nautilus <nautilus-list lists eazel com>
- Subject: Re: [Nautilus-list] Text view Patch
- Date: 22 Oct 2001 19:12:04 -0500
Ok,
Here is a (slightly) new version of a patch I posted a few days ago. It is now kinder, and more forgiving.
Pete
P.S. Is there some procedure for geting this added to the main Nautilus, or is that a pipe dream :-)
--- /home/plastercast/nautilus-1.0.5-stock/components/text/nautilus-text-view.c Thu Oct 4 11:26:40 2001
+++ nautilus-text-view.c Mon Oct 22 06:58:06 2001
@@ -148,6 +148,7 @@
nautilus_text_view_initialize (NautilusTextView *text_view)
{
GtkWidget *scrolled_window;
+ GtkWidget *disclamer;
text_view->details = g_new0 (NautilusTextViewDetails, 1);
@@ -182,9 +183,18 @@
text_view_load_location_callback,
text_view);
+
/* allocate a vbox to contain the text widget */
text_view->details->container = gtk_vbox_new (FALSE, 0);
gtk_container_set_border_width (GTK_CONTAINER (text_view->details->container), 0);
+
+ /* Create label and place it in frame if user level is set to "Beginner"*/
+
+ disclamer = gtk_label_new("This text is read only\n To edit it, choose an option from the sidebar");
+ eel_gtk_label_make_larger (GTK_LABEL(disclamer), 3);
+ eel_gtk_label_make_bold (GTK_LABEL(disclamer));
+ gtk_box_pack_start (GTK_BOX (text_view->details->container), GTK_WIDGET (disclamer), FALSE, FALSE, FALSE);
+
gtk_container_add (GTK_CONTAINER (text_view->details->event_box), GTK_WIDGET (text_view->details->container));
/* allocate the text object */
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]