From 3817c8b47e85d3644383182c2b3909a2dbdd0b3b Mon Sep 17 00:00:00 2001 From: hut Date: Mon, 21 Jun 2010 00:23:04 +0200 Subject: removed pydoc since it can be generated with "make doc" easily --- doc/pydoc/ranger.gui.widgets.html | 147 -------------------------------------- 1 file changed, 147 deletions(-) delete mode 100644 doc/pydoc/ranger.gui.widgets.html (limited to 'doc/pydoc/ranger.gui.widgets.html') diff --git a/doc/pydoc/ranger.gui.widgets.html b/doc/pydoc/ranger.gui.widgets.html deleted file mode 100644 index b20d3c9f..00000000 --- a/doc/pydoc/ranger.gui.widgets.html +++ /dev/null @@ -1,147 +0,0 @@ - -Python: package ranger.gui.widgets - - - - - -
 
- 
ranger.gui.widgets
index
/home/hut/code/ranger/ranger/gui/widgets/__init__.py
-

# Copyright (C) 2009, 2010  Roman Zimbelmann <romanz@lavabit.com>
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.

-

- - - - - -
 
-Package Contents
       
browsercolumn
-browserview
-
console
-console_mode
-
pager
-statusbar
-
taskview
-titlebar
-

- - - - - -
 
-Classes
       
-
ranger.gui.displayable.Displayable(ranger.shared.EnvironmentAware, ranger.shared.FileManagerAware, ranger.gui.curses_shortcuts.CursesShortcuts) -
-
-
Widget -
-
-
-

- - - - - - - -
 
-class Widget(ranger.gui.displayable.Displayable)
   The Widget class defines no methods and only exists for
-classification of widgets.
 
 
Method resolution order:
-
Widget
-
ranger.gui.displayable.Displayable
-
ranger.shared.EnvironmentAware
-
ranger.shared.FileManagerAware
-
ranger.shared.Awareness
-
ranger.gui.curses_shortcuts.CursesShortcuts
-
ranger.shared.settings.SettingsAware
-
builtins.object
-
-
-Methods inherited from ranger.gui.displayable.Displayable:
-
__bool__ = __nonzero__(self)
Always True
- -
__contains__(self, item)
Is item inside the boundaries?
-item can be an iterable like [y, x] or an object with x and y methods.
- -
__init__(self, win, env=None, fm=None, settings=None)
- -
__nonzero__(self)
Always True
- -
__str__(self)
- -
click(self, event)
Called when a mouse key is pressed and self.focused is True.
-Override this!
- -
contains_point(self, y, x)
Test whether the point (with absolute coordinates) lies
-within the boundaries of this object.
- -
destroy(self)
Called when the object is destroyed.
-Override this!
- -
draw(self)
Draw the object. Called on every main iteration if visible.
-Containers should call draw() on their contained objects here.
-Override this!
- -
finalize(self)
Called after every displayable is done drawing.
-Override this!
- -
poke(self)
Called before drawing, even if invisible
- -
press(self, key)
Called when a key is pressed and self.focused is True.
-Override this!
- -
resize(self, y, x, hei=None, wid=None)
Resize the widget
- -
-Data and other attributes inherited from ranger.shared.EnvironmentAware:
-
env = None
- -
-Data and other attributes inherited from ranger.shared.FileManagerAware:
-
fm = None
- -
-Data descriptors inherited from ranger.shared.Awareness:
-
__dict__
-
dictionary for instance variables (if defined)
-
-
__weakref__
-
list of weak references to the object (if defined)
-
-
-Methods inherited from ranger.gui.curses_shortcuts.CursesShortcuts:
-
addch(self, *args)
- -
addnstr(self, *args)
- -
addstr(self, *args)
- -
color(self, *keys)
Change the colors from now on.
- -
color_at(self, y, x, wid, *keys)
Change the colors at the specified position
- -
color_reset(self)
Change the colors to the default colors
- -
-Data and other attributes inherited from ranger.shared.settings.SettingsAware:
-
settings = {}
- -

- \ No newline at end of file -- cgit 1.4.1-2-gfad0 j5@gmail.com> 2012-04-30 01:09:42 +0100 committer James Booth <boothj5@gmail.com> 2012-04-30 01:09:42 +0100 Started work on bash style history' href='/danisanti/profani-tty/commit/test_prof_history.c?id=b6c5fef45eaadce4463ee60e60eb0a0252b61255'>b6c5fef4 ^

f21cb52a ^


































4531aebd ^
f21cb52a ^






4531aebd ^























b6c5fef4 ^

1730372e ^



























































































8202255d ^








773255b4 ^
8202255d ^






b6c5fef4 ^


1730372e ^

b6c5fef4 ^

f21cb52a ^

4531aebd ^


1730372e ^


8202255d ^
b6c5fef4 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233