summaryrefslogtreecommitdiff
path: root/gtk
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-09-22 22:58:27 +0100
committerVincent Sanders <vince@kyllikki.org>2014-09-22 22:58:27 +0100
commit9487076f2ad1298b1122155170949cb59156d9b9 (patch)
tree4a653e9549526bf6909bad797f65b58706b77191 /gtk
parentdfb774c2458f749ebafba77ef30f2d16e80032e7 (diff)
downloadnetsurf-9487076f2ad1298b1122155170949cb59156d9b9.tar.gz
netsurf-9487076f2ad1298b1122155170949cb59156d9b9.tar.bz2
remove old notes that are no longer relevant
Diffstat (limited to 'gtk')
-rw-r--r--gtk/notes36
1 files changed, 0 insertions, 36 deletions
diff --git a/gtk/notes b/gtk/notes
deleted file mode 100644
index 0944db9e5..000000000
--- a/gtk/notes
+++ /dev/null
@@ -1,36 +0,0 @@
-Currently a gui_window is a top level browser object.
-
-This has to be corrected. Instead a gui_window must simply be a render
-target inside a non-user-sizable container which is capable of
-scrolling around. I.E. a GtkViewport.
-
-Thusly all routines which are callbacks for the viewport can remain
-attached to a gui_window, all others must be migrated to a
-gtk_scaffold concept which embodies the toolbar, statusbar,
-blahblahblah.
-
-If a gui_window wants to be able to scroll itself, it automatically
-embeds itself in a GtkScrolledWindow which will provide scrollbars for
-it. Otherwise it makes a call to its scaffold to ask it to attach its
-scrollbars to the viewport.
-
-The gui_window objects therefore are a GtkDrawingArea inside a
-GtkFixed inside a GtkViewport (optionally inside a GtkScrolledWindow)
-The GtkFixed's job (among other things) is to sit on its size_allocate
-event and ensure that the GtkDrawingArea fills 100% of itself. (and is
-on the bottom of the widget stack -- this happens automatically if the
-drawing area is the first widget to be added to the GtkFixed and it is
-never removed.)
-
-The gtk_scaffold object must expose a call to show/hide (link/delink?)
-its scrollbars so that if the contained gui_window becomes a frameset
-then it can hide the scrollbars belonging to the top level window.
-
-It must be possible to add gui_window objects to other gui_window
-objects rather than to a gtk_scaffold so that frames can be embedded
-appropriately.
-
-The size-allocate event for the drawing area must pass through to the
-underlying browser_window as currently it does.
-
-