Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Make full layout occupy entire area of its parent window. Until now, we were leaving a little space on each side for debugging; that doesn't seem necessary any more... |
---|---|
Timelines: | family | ancestors | descendants | both | dev1.x |
Files: | files | file ages | folders |
SHA1: |
b66fd70acf90314d2b14df0f7f16f6ec |
User & Date: | manuv 2013-07-30 00:21:04.419 |
Context
2013-07-30
| ||
01:54 |
Some minor reorganization of the X event handlers:
This should pretty much all the code that's needed for the 0.2.0 release. Now to tackle the documentation... check-in: 4dc459e610 user: manuv tags: dev1.x | |
00:21 | Make full layout occupy entire area of its parent window. Until now, we were leaving a little space on each side for debugging; that doesn't seem necessary any more... check-in: b66fd70acf user: manuv tags: dev1.x | |
00:17 | Added a function and default key binding to quit Minx. check-in: 33a1e31904 user: manuv tags: dev1.x | |
Changes
Changes to layout/full.py.
︙ | ︙ | |||
75 76 77 78 79 80 81 | Since Minx layouts are X windows, this constructor will create a child window of the specified parent, set appropriate properties to mark it as a layout, set the event mask, etc., and then map the layout window. """ | < | | 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | Since Minx layouts are X windows, this constructor will create a child window of the specified parent, set appropriate properties to mark it as a layout, set the event mask, etc., and then map the layout window. """ base.__init__(self, wm, parent) # Reparent notification def reparented(self, w): """Reparent notification. @param w The @ref minxlib::window "minxlib.window" that was reparented. |
︙ | ︙ |