Changeset 62:960206198cbd
- Timestamp:
- 06/27/08 12:19:46
(7 months ago)
- Author:
- Diggory Hardy <diggory.hardy@gmail.com>
- branch:
- default
- Message:
Documentation changes only. (Idea for new gui.content.Items module; unused gl.texture module commented out.)
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r53 |
r62 |
|
| 300 | 300 | /** mixin impl("type symbol[, symbol[...]];[type symbol[...];][...]") |
|---|
| 301 | 301 | * |
|---|
| 302 | | * E.g. |
|---|
| | 302 | * Where type is one of bool, int, double, char[]. E.g. |
|---|
| 303 | 303 | * --- |
|---|
| 304 | 304 | * mixin (impl ("bool a, b; int i;")); |
|---|
| … | … | |
| 317 | 317 | * |
|---|
| 318 | 318 | * Extending: mixins could also be used for the static this() {...} or even the whole |
|---|
| 319 | | * class, but doing would rather decrease readability of any implementation. */ |
|---|
| | 319 | * class, but doing so would rather decrease readability of any implementation. */ |
|---|
| 320 | 320 | template impl(char[] A /+, char[] symb+/) { |
|---|
| 321 | 321 | const char[] impl = A~"\nthis(){\n"~aaDefs!(A)~"}"; |
|---|
| r55 |
r62 |
|
| 13 | 13 | You should have received a copy of the GNU General Public License |
|---|
| 14 | 14 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
|---|
| | 15 | |
|---|
| | 16 | /++ |
|---|
| | 17 | This module is unused and untested. The main reason being using glBindTexture to use multiple |
|---|
| | 18 | textures isn't working for me. |
|---|
| | 19 | --- |
|---|
| 15 | 20 | |
|---|
| 16 | 21 | /** Simple module for loading images. |
|---|
| … | … | |
| 112 | 117 | } |
|---|
| 113 | 118 | |
|---|
| | 119 | --- |
|---|
| | 120 | +/ |
|---|
| r61 |
r62 |
|
| 14 | 14 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
|---|
| 15 | 15 | |
|---|
| 16 | | /** Basic text widget and supporting code for widgets containing text. */ |
|---|
| | 16 | /** Basic text widget and supporting code for widgets containing text. |
|---|
| | 17 | * |
|---|
| | 18 | * All content widgets have one (at least for basic content widgets) Content, from |
|---|
| | 19 | * mde.gui.content.Items . */ |
|---|
| 17 | 20 | module mde.gui.widget.TextWidget; |
|---|
| 18 | 21 | |
|---|