From: "Aneesh Kumar K.V" <aneesh.kumar@hp.com>
To: Pavel Roskin <proski@gnu.org>
Subject: Re: [PATCH 2/2] Don't use excessive non-standard border width
Date: Tue, 28 Feb 2006 11:23:00 +0530 [thread overview]
Message-ID: <20060228055300.GD5934@satan.india.hp.com> (raw)
In-Reply-To: <1141104931.22029.5.camel@dv>
On Tue, Feb 28, 2006 at 12:35:31AM -0500, Pavel Roskin wrote:
> Hi, Aneesh!
>
> On Tue, 2006-02-28 at 10:46 +0530, Aneesh Kumar K.V wrote:
> > I am not sure about this. I guess it looks much better with a border.
> >
> > Not applied.
>
> I think what really annoyed me was the menu with lone "Help" on the
> right hand side, and excessive borders only made it look worse. Maybe
> the border should not be used on the menu? It looks wrong to me that
> the menu is appended to the top pane rather than to the whole window.
>
how about this
diff --git a/contrib/gitview/gitview b/contrib/gitview/gitview
index aded7ed..e57c53b 100755
--- a/contrib/gitview/gitview
+++ b/contrib/gitview/gitview
@@ -482,19 +482,10 @@ class GitView:
def construct(self):
"""Construct the window contents."""
+ vbox = gtk.VBox()
paned = gtk.VPaned()
paned.pack1(self.construct_top(), resize=False, shrink=True)
paned.pack2(self.construct_bottom(), resize=False, shrink=True)
- self.window.add(paned)
- paned.show()
-
-
- def construct_top(self):
- """Construct the top-half of the window."""
- vbox = gtk.VBox(spacing=6)
- vbox.set_border_width(12)
- vbox.show()
-
menu_bar = gtk.MenuBar()
menu_bar.set_pack_direction(gtk.PACK_DIRECTION_RTL)
help_menu = gtk.MenuItem("Help")
@@ -506,8 +497,20 @@ class GitView:
help_menu.set_submenu(menu)
help_menu.show()
menu_bar.append(help_menu)
- vbox.pack_start(menu_bar, False, False, 2)
menu_bar.show()
+ vbox.pack_start(menu_bar, False, False, 2)
+ vbox.pack_start(paned, True, True, 2)
+ self.window.add(vbox)
+ paned.show()
+ vbox.show()
+
+
+ def construct_top(self):
+ """Construct the top-half of the window."""
+ vbox = gtk.VBox(spacing=6)
+ vbox.set_border_width(12)
+ vbox.show()
+
scrollwin = gtk.ScrolledWindow()
scrollwin.set_policy(gtk.POLICY_NEVER, gtk.POLICY_AUTOMATIC)
prev parent reply other threads:[~2006-02-28 5:55 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20060228045629.21880.19007.stgit@dv.roinet.com>
2006-02-28 5:15 ` [PATCH 1/2] Use solid text for refs in gitview Aneesh Kumar K.V
[not found] ` <20060228045631.21880.27670.stgit@dv.roinet.com>
2006-02-28 5:16 ` [PATCH 2/2] Don't use excessive non-standard border width Aneesh Kumar K.V
2006-02-28 5:35 ` Pavel Roskin
2006-02-28 5:53 ` Aneesh Kumar K.V [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20060228055300.GD5934@satan.india.hp.com \
--to=aneesh.kumar@hp.com \
--cc=proski@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.