mirror of
https://github.com/vidarh/ruby-x11
synced 2024-12-29 10:25:05 +01:00
19 lines
268 B
Ruby
19 lines
268 B
Ruby
|
module X11
|
||
|
class Screen
|
||
|
attr_reader :display
|
||
|
|
||
|
def initialize(display, data)
|
||
|
@display = display
|
||
|
@internal = data
|
||
|
end
|
||
|
|
||
|
def width
|
||
|
@internal[:width_in_pixels]
|
||
|
end
|
||
|
|
||
|
def height
|
||
|
@internal[:height_in_pixels]
|
||
|
end
|
||
|
end
|
||
|
end
|