/new_database_dialog.rb
https://bitbucket.org/jjhop/mycash · Ruby · 28 lines · 7 code · 2 blank · 19 comment · 0 complexity · 169643266ab1e94f05402ec54b4f1747 MD5 · raw file
- # 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, version 3 of the License.
- #
- # 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/>.
- #
- # Copyright: (C) 2004-2010 Rafal Kotusiewicz aka 'jjhop'. All rights reserved.
- #
- # http://bitbucket.org/jjhop/mycash/overview/
- # http://bitbucket.org/jjhop/mycash/wiki/Home
- #
-
- require "fox16"
- include Fox
-
- # Okno dialogowe pozwalajace utworzyc nowa baze danych
- # dla innego rodzaju wydatkow (wydatki firmowe, rodzinne itd)
- class NewDatabaseDialog < FXDialogBox
- def initialize(parent)
- super(parent, "Tworzenie bazy", DECOR_BORDER|DECOR_TITLE|DECOR_CLOSE|DECOR_RESIZE, 0, 0, 320, 200)
- end
- end