Browse Subversion Repository
Contents of /ncurses/ncurses_env.rb
Parent Directory
| Revision Log
Revision 17 -
( show annotations)
( download)
Sat Apr 7 15:02:50 2007 UTC
(16 years, 11 months ago)
by bluedwarf
File size: 1128 byte(s)
Changes the names of the system specific classes.
| 1 |
# ncurses_env.rb: Settings of system-dependant classes for Ncurses. |
| 2 |
# |
| 3 |
# Copyright (C) 2007 Takashi Nakamoto |
| 4 |
# |
| 5 |
# This program is free software; you can redistribute it and/or modify |
| 6 |
# it under the terms of the GNU General Public License version 2 as |
| 7 |
# published by the Free Software Foundation. |
| 8 |
# |
| 9 |
# This program is distributed in the hope that it will be useful, but |
| 10 |
# WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 12 |
# General Public License for more details. |
| 13 |
# |
| 14 |
# You should have received a copy of the GNU General Public License |
| 15 |
# along with this program; if not, write to the Free Software |
| 16 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
| 17 |
# 02110-1301 USA. |
| 18 |
# |
| 19 |
|
| 20 |
require "ncurses/ncurses_view.rb" |
| 21 |
require "ncurses/ncurses_window.rb" |
| 22 |
require "ncurses/ncurses_mini_window.rb" |
| 23 |
require "ncurses/ncurses_modeline.rb" |
| 24 |
|
| 25 |
module Edmaru |
| 26 |
SYSTEM_VIEW = Edmaru::Ncurses::NcursesView |
| 27 |
SYSTEM_WINDOW = Edmaru::Ncurses::NcursesWindow |
| 28 |
SYSTEM_MINI_WINDOW = Edmaru::Ncurses::NcursesMiniWindow |
| 29 |
SYSTEM_MODELINE = Edmaru::Ncurses::NcursesModeLine |
| 30 |
end |
|