Changeset 28843
- Timestamp:
- 01/22/09 16:14:57 (4 years ago)
- Location:
- lang/ruby/ruwin/lib/ruwin
- Files:
-
- 2 modified
-
component.rb (modified) (2 diffs)
-
control.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lang/ruby/ruwin/lib/ruwin/component.rb
r28836 r28843 10 10 @proparty = { 11 11 :caption => "", 12 :style => 0, 13 :exstyle => 0, 12 14 :left => 0, 13 15 :top => 0, … … 21 23 22 24 window.classname = self::CLASS_NAME if self::CLASS_NAME 23 style = @proparty[:style] || self::STYLE 24 window.style = style if style 25 exstyle = @proparty[:exstyle] || self::EXSTYLE 26 window.exstyle = exstyle if exstyle 25 window.style = self::STYLE | @proparty[:style] if self::STYLE 26 window.exstyle = self::EXSTYLE | @proparty[:exstyle] if self::EXSTYLE 27 27 28 28 window.caption = @proparty[:caption].tosjis -
lang/ruby/ruwin/lib/ruwin/control.rb
r28816 r28843 1 1 module Ruwin 2 2 class Control < Component 3 STYLE = WS_VISIBLE | WS_CHILD 3 STYLE = WS_VISIBLE | WS_CHILD 4 EXSTYLE = 0 4 5 5 6 class << self
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)