~ubuntu-branches/ubuntu/gutsy/kdebase-workspace/gutsy-backports

« back to all changes in this revision

Viewing changes to kicker/rich-ideas.txt

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2007-10-31 19:16:54 UTC
  • Revision ID: james.westby@ubuntu.com-20071031191654-xuof6e1jg6uxqaze
Tags: 3.95.0-0ubuntu1~gutsy1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
Positioning of extensions
3
 
=========================
4
 
 
5
 
How about using the alignment flags (or similar) for position, and the
6
 
direction flags for how to fill?
7
 
 
8
 
 
9
 
 ---------------
10
 
 |a    b      c|
11
 
 |             |
12
 
 |             |
13
 
 |             |
14
 
 |e           d|
15
 
 ---------------
16
 
 
17
 
a = Left | Top
18
 
b = Middle | Top
19
 
c = Right | Top
20
 
d = Right | Bottom
21
 
 
22
 
Now here's the filling
23
 
 
24
 
12345      LeftToRight
25
 
54321      RightToLeft (eg. for a right aligned thing)
26
 
5
27
 
4
28
 
3          BottomToTop
29
 
2
30
 
1
31
 
 
32
 
 
33
 
etc. etc.
34
 
 
35
 
Essentially, this splits the concept of positioning and layout. Now, lets get
36
 
crazy:
37
 
 
38
 
Imagine we're in position a and want to have a triangular corner layout:
39
 
 
40
 
1247
41
 
35
42
 
6
43
 
 
44
 
So, maybe we need some sort of concept of (one of):
45
 
 1) multiple linked rectangular blocks
46
 
 2) extensions/bars with a mask
47
 
 3) each item being considered independently (maybe some sort of magnetic
48
 
 blocks so they can be draggable?)
49
 
 
50
 
Finally, let's get really insane:
51
 
 
52
 
positions a AND c
53
 
 
54
 
12       65
55
 
34        7
56
 
 
57
 
This perhaps indicates that the details of placement should be passed off to
58
 
the extensions, but also that extensions might be 'linked'. eg. removing the
59
 
extension in position a should also remove c (and the configurations are also
60
 
linked).
61
 
 
62