2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2002-12-12 09:21:43 +03:00
|
|
|
// $Id: gui.cc,v 1.59 2002-12-12 06:21:43 yakovlev Exp $
|
2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2002-02-01 19:46:27 +03:00
|
|
|
// Copyright (C) 2002 MandrakeSoft S.A.
|
2001-04-10 05:04:59 +04:00
|
|
|
//
|
|
|
|
// MandrakeSoft S.A.
|
|
|
|
// 43, rue d'Aboukir
|
|
|
|
// 75002 Paris - France
|
|
|
|
// http://www.linux-mandrake.com/
|
|
|
|
// http://www.mandrakesoft.com/
|
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library 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
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
|
|
|
|
2001-05-09 00:18:04 +04:00
|
|
|
#include <signal.h>
|
2001-04-10 05:04:59 +04:00
|
|
|
#include "bochs.h"
|
|
|
|
#include "gui/bitmaps/floppya.h"
|
|
|
|
#include "gui/bitmaps/floppyb.h"
|
|
|
|
#include "gui/bitmaps/mouse.h"
|
|
|
|
#include "gui/bitmaps/reset.h"
|
|
|
|
#include "gui/bitmaps/power.h"
|
|
|
|
#include "gui/bitmaps/snapshot.h"
|
2002-03-11 18:04:58 +03:00
|
|
|
#include "gui/bitmaps/copy.h"
|
|
|
|
#include "gui/bitmaps/paste.h"
|
2001-11-10 01:17:33 +03:00
|
|
|
#include "gui/bitmaps/configbutton.h"
|
2002-02-01 19:46:27 +03:00
|
|
|
#include "gui/bitmaps/cdromd.h"
|
2002-08-09 10:16:43 +04:00
|
|
|
#include "gui/bitmaps/userbutton.h"
|
2001-09-26 04:15:30 +04:00
|
|
|
#if BX_WITH_MACOS
|
2001-04-10 05:04:59 +04:00
|
|
|
# include <Disks.h>
|
|
|
|
#endif
|
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
bx_gui_c *bx_gui = NULL;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
#define BX_GUI_THIS bx_gui->
|
merge in BRANCH-io-cleanup.
To see the commit logs for this use either cvsweb or
cvs update -r BRANCH-io-cleanup and then 'cvs log' the various files.
In general this provides a generic interface for logging.
logfunctions:: is a class that is inherited by some classes, and also
. allocated as a standalone global called 'genlog'. All logging uses
. one of the ::info(), ::error(), ::ldebug(), ::panic() methods of this
. class through 'BX_INFO(), BX_ERROR(), BX_DEBUG(), BX_PANIC()' macros
. respectively.
.
. An example usage:
. BX_INFO(("Hello, World!\n"));
iofunctions:: is a class that is allocated once by default, and assigned
as the iofunction of each logfunctions instance. It is this class that
maintains the file descriptor and other output related code, at this
point using vfprintf(). At some future point, someone may choose to
write a gui 'console' for bochs to which messages would be redirected
simply by assigning a different iofunction class to the various logfunctions
objects.
More cleanup is coming, but this works for now. If you want to see alot
of debugging output, in main.cc, change onoff[LOGLEV_DEBUG]=0 to =1.
Comments, bugs, flames, to me: todd@fries.net
2001-05-15 18:49:57 +04:00
|
|
|
#define LOG_THIS BX_GUI_THIS
|
2001-04-10 05:04:59 +04:00
|
|
|
|
merge in BRANCH-io-cleanup.
To see the commit logs for this use either cvsweb or
cvs update -r BRANCH-io-cleanup and then 'cvs log' the various files.
In general this provides a generic interface for logging.
logfunctions:: is a class that is inherited by some classes, and also
. allocated as a standalone global called 'genlog'. All logging uses
. one of the ::info(), ::error(), ::ldebug(), ::panic() methods of this
. class through 'BX_INFO(), BX_ERROR(), BX_DEBUG(), BX_PANIC()' macros
. respectively.
.
. An example usage:
. BX_INFO(("Hello, World!\n"));
iofunctions:: is a class that is allocated once by default, and assigned
as the iofunction of each logfunctions instance. It is this class that
maintains the file descriptor and other output related code, at this
point using vfprintf(). At some future point, someone may choose to
write a gui 'console' for bochs to which messages would be redirected
simply by assigning a different iofunction class to the various logfunctions
objects.
More cleanup is coming, but this works for now. If you want to see alot
of debugging output, in main.cc, change onoff[LOGLEV_DEBUG]=0 to =1.
Comments, bugs, flames, to me: todd@fries.net
2001-05-15 18:49:57 +04:00
|
|
|
bx_gui_c::bx_gui_c(void)
|
|
|
|
{
|
2001-06-27 23:16:01 +04:00
|
|
|
put("GUI"); // Init in specific_init
|
merge in BRANCH-io-cleanup.
To see the commit logs for this use either cvsweb or
cvs update -r BRANCH-io-cleanup and then 'cvs log' the various files.
In general this provides a generic interface for logging.
logfunctions:: is a class that is inherited by some classes, and also
. allocated as a standalone global called 'genlog'. All logging uses
. one of the ::info(), ::error(), ::ldebug(), ::panic() methods of this
. class through 'BX_INFO(), BX_ERROR(), BX_DEBUG(), BX_PANIC()' macros
. respectively.
.
. An example usage:
. BX_INFO(("Hello, World!\n"));
iofunctions:: is a class that is allocated once by default, and assigned
as the iofunction of each logfunctions instance. It is this class that
maintains the file descriptor and other output related code, at this
point using vfprintf(). At some future point, someone may choose to
write a gui 'console' for bochs to which messages would be redirected
simply by assigning a different iofunction class to the various logfunctions
objects.
More cleanup is coming, but this works for now. If you want to see alot
of debugging output, in main.cc, change onoff[LOGLEV_DEBUG]=0 to =1.
Comments, bugs, flames, to me: todd@fries.net
2001-05-15 18:49:57 +04:00
|
|
|
settype(GUILOG);
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
bx_gui_c::~bx_gui_c()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
void
|
|
|
|
bx_gui_c::init(int argc, char **argv, unsigned tilewidth, unsigned tileheight)
|
|
|
|
{
|
2002-10-25 01:07:56 +04:00
|
|
|
specific_init(argc, argv, tilewidth, tileheight, BX_HEADER_BAR_Y);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
// Define some bitmaps to use in the headerbar
|
|
|
|
BX_GUI_THIS floppyA_bmap_id = create_bitmap(bx_floppya_bmap,
|
|
|
|
BX_FLOPPYA_BMAP_X, BX_FLOPPYA_BMAP_Y);
|
|
|
|
BX_GUI_THIS floppyA_eject_bmap_id = create_bitmap(bx_floppya_eject_bmap,
|
|
|
|
BX_FLOPPYA_BMAP_X, BX_FLOPPYA_BMAP_Y);
|
|
|
|
BX_GUI_THIS floppyB_bmap_id = create_bitmap(bx_floppyb_bmap,
|
|
|
|
BX_FLOPPYB_BMAP_X, BX_FLOPPYB_BMAP_Y);
|
|
|
|
BX_GUI_THIS floppyB_eject_bmap_id = create_bitmap(bx_floppyb_eject_bmap,
|
|
|
|
BX_FLOPPYB_BMAP_X, BX_FLOPPYB_BMAP_Y);
|
2002-02-01 19:46:27 +03:00
|
|
|
BX_GUI_THIS cdromD_bmap_id = create_bitmap(bx_cdromd_bmap,
|
|
|
|
BX_CDROMD_BMAP_X, BX_CDROMD_BMAP_Y);
|
|
|
|
BX_GUI_THIS cdromD_eject_bmap_id = create_bitmap(bx_cdromd_eject_bmap,
|
|
|
|
BX_CDROMD_BMAP_X, BX_CDROMD_BMAP_Y);
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_GUI_THIS mouse_bmap_id = create_bitmap(bx_mouse_bmap,
|
|
|
|
BX_MOUSE_BMAP_X, BX_MOUSE_BMAP_Y);
|
|
|
|
BX_GUI_THIS nomouse_bmap_id = create_bitmap(bx_nomouse_bmap,
|
|
|
|
BX_MOUSE_BMAP_X, BX_MOUSE_BMAP_Y);
|
|
|
|
|
|
|
|
|
|
|
|
BX_GUI_THIS power_bmap_id = create_bitmap(bx_power_bmap, BX_POWER_BMAP_X, BX_POWER_BMAP_Y);
|
|
|
|
BX_GUI_THIS reset_bmap_id = create_bitmap(bx_reset_bmap, BX_RESET_BMAP_X, BX_RESET_BMAP_Y);
|
|
|
|
BX_GUI_THIS snapshot_bmap_id = create_bitmap(bx_snapshot_bmap, BX_SNAPSHOT_BMAP_X, BX_SNAPSHOT_BMAP_Y);
|
2002-03-11 18:04:58 +03:00
|
|
|
BX_GUI_THIS copy_bmap_id = create_bitmap(bx_copy_bmap, BX_COPY_BMAP_X, BX_COPY_BMAP_Y);
|
|
|
|
BX_GUI_THIS paste_bmap_id = create_bitmap(bx_paste_bmap, BX_PASTE_BMAP_X, BX_PASTE_BMAP_Y);
|
|
|
|
BX_GUI_THIS config_bmap_id = create_bitmap(bx_config_bmap, BX_CONFIG_BMAP_X, BX_CONFIG_BMAP_Y);
|
2002-08-09 10:16:43 +04:00
|
|
|
BX_GUI_THIS user_bmap_id = create_bitmap(bx_user_bmap, BX_USER_BMAP_X, BX_USER_BMAP_Y);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
|
|
|
|
// Add the initial bitmaps to the headerbar, and enable callback routine, for use
|
|
|
|
// when that bitmap is clicked on
|
|
|
|
|
|
|
|
// Floppy A:
|
2002-10-25 01:07:56 +04:00
|
|
|
BX_GUI_THIS floppyA_status = DEV_floppy_get_media_status(0);
|
2001-04-10 05:04:59 +04:00
|
|
|
if (BX_GUI_THIS floppyA_status)
|
|
|
|
BX_GUI_THIS floppyA_hbar_id = headerbar_bitmap(BX_GUI_THIS floppyA_bmap_id,
|
|
|
|
BX_GRAVITY_LEFT, floppyA_handler);
|
|
|
|
else
|
|
|
|
BX_GUI_THIS floppyA_hbar_id = headerbar_bitmap(BX_GUI_THIS floppyA_eject_bmap_id,
|
|
|
|
BX_GRAVITY_LEFT, floppyA_handler);
|
|
|
|
|
|
|
|
// Floppy B:
|
2002-10-25 01:07:56 +04:00
|
|
|
BX_GUI_THIS floppyB_status = DEV_floppy_get_media_status(1);
|
2001-04-10 05:04:59 +04:00
|
|
|
if (BX_GUI_THIS floppyB_status)
|
|
|
|
BX_GUI_THIS floppyB_hbar_id = headerbar_bitmap(BX_GUI_THIS floppyB_bmap_id,
|
|
|
|
BX_GRAVITY_LEFT, floppyB_handler);
|
|
|
|
else
|
|
|
|
BX_GUI_THIS floppyB_hbar_id = headerbar_bitmap(BX_GUI_THIS floppyB_eject_bmap_id,
|
|
|
|
BX_GRAVITY_LEFT, floppyB_handler);
|
|
|
|
|
2002-11-24 17:57:43 +03:00
|
|
|
// CDROM,
|
|
|
|
// valgrinds says that the harddrive object is not be initialised yet,
|
|
|
|
// so we just set the bitmap to ejected for now
|
|
|
|
#if 0
|
2002-10-25 01:07:56 +04:00
|
|
|
if (DEV_hd_present()) {
|
|
|
|
Bit32u handle = DEV_hd_get_first_cd_handle();
|
|
|
|
BX_GUI_THIS cdromD_status = DEV_hd_get_cd_media_status(handle);
|
|
|
|
}
|
2002-09-23 00:56:12 +04:00
|
|
|
|
2002-02-01 19:46:27 +03:00
|
|
|
if (BX_GUI_THIS cdromD_status)
|
|
|
|
BX_GUI_THIS cdromD_hbar_id = headerbar_bitmap(BX_GUI_THIS cdromD_bmap_id,
|
|
|
|
BX_GRAVITY_LEFT, cdromD_handler);
|
|
|
|
else
|
2002-11-24 17:57:43 +03:00
|
|
|
#endif
|
2002-02-01 19:46:27 +03:00
|
|
|
BX_GUI_THIS cdromD_hbar_id = headerbar_bitmap(BX_GUI_THIS cdromD_eject_bmap_id,
|
|
|
|
BX_GRAVITY_LEFT, cdromD_handler);
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
// Mouse button
|
2001-06-20 18:01:39 +04:00
|
|
|
if (bx_options.Omouse_enabled->get ())
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_GUI_THIS mouse_hbar_id = headerbar_bitmap(BX_GUI_THIS mouse_bmap_id,
|
2001-06-23 07:18:14 +04:00
|
|
|
BX_GRAVITY_LEFT, toggle_mouse_enable);
|
2001-04-10 05:04:59 +04:00
|
|
|
else
|
|
|
|
BX_GUI_THIS mouse_hbar_id = headerbar_bitmap(BX_GUI_THIS nomouse_bmap_id,
|
2001-06-23 07:18:14 +04:00
|
|
|
BX_GRAVITY_LEFT, toggle_mouse_enable);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2002-03-11 18:04:58 +03:00
|
|
|
// These are the buttons on the right side. They are created in order
|
|
|
|
// of right to left.
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
// Power button
|
|
|
|
BX_GUI_THIS power_hbar_id = headerbar_bitmap(BX_GUI_THIS power_bmap_id,
|
|
|
|
BX_GRAVITY_RIGHT, power_handler);
|
|
|
|
// Reset button
|
|
|
|
BX_GUI_THIS reset_hbar_id = headerbar_bitmap(BX_GUI_THIS reset_bmap_id,
|
|
|
|
BX_GRAVITY_RIGHT, reset_handler);
|
2001-11-10 01:17:33 +03:00
|
|
|
// Configure button
|
|
|
|
BX_GUI_THIS config_hbar_id = headerbar_bitmap(BX_GUI_THIS config_bmap_id,
|
|
|
|
BX_GRAVITY_RIGHT, config_handler);
|
2002-03-11 18:04:58 +03:00
|
|
|
// Snapshot button
|
|
|
|
BX_GUI_THIS snapshot_hbar_id = headerbar_bitmap(BX_GUI_THIS snapshot_bmap_id,
|
|
|
|
BX_GRAVITY_RIGHT, snapshot_handler);
|
|
|
|
// Paste button
|
|
|
|
BX_GUI_THIS paste_hbar_id = headerbar_bitmap(BX_GUI_THIS paste_bmap_id,
|
|
|
|
BX_GRAVITY_RIGHT, paste_handler);
|
|
|
|
// Copy button
|
|
|
|
BX_GUI_THIS copy_hbar_id = headerbar_bitmap(BX_GUI_THIS copy_bmap_id,
|
|
|
|
BX_GRAVITY_RIGHT, copy_handler);
|
2002-08-09 10:16:43 +04:00
|
|
|
// User button
|
|
|
|
BX_GUI_THIS user_hbar_id = headerbar_bitmap(BX_GUI_THIS user_bmap_id,
|
|
|
|
BX_GRAVITY_RIGHT, userbutton_handler);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2002-12-12 09:21:43 +03:00
|
|
|
if(bx_options.Otext_snapshot_check) {
|
|
|
|
bx_pc_system.register_timer(this, bx_gui_c::snapshot_checker, (unsigned) 10000000, 1, 1, "snap_chk");
|
|
|
|
}
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
show_headerbar();
|
|
|
|
}
|
|
|
|
|
2001-09-28 10:03:40 +04:00
|
|
|
void
|
2002-03-17 23:57:54 +03:00
|
|
|
bx_gui_c::update_drive_status_buttons (void) {
|
2001-09-28 10:03:40 +04:00
|
|
|
BX_GUI_THIS floppyA_status =
|
2002-10-25 01:07:56 +04:00
|
|
|
DEV_floppy_get_media_status(0)
|
2002-08-04 12:42:34 +04:00
|
|
|
&& bx_options.floppya.Ostatus->get ();
|
2001-09-28 10:03:40 +04:00
|
|
|
BX_GUI_THIS floppyB_status =
|
2002-10-25 01:07:56 +04:00
|
|
|
DEV_floppy_get_media_status(1)
|
2002-08-04 12:42:34 +04:00
|
|
|
&& bx_options.floppyb.Ostatus->get ();
|
2002-10-25 01:07:56 +04:00
|
|
|
Bit32u handle = DEV_hd_get_first_cd_handle();
|
|
|
|
BX_GUI_THIS cdromD_status = DEV_hd_get_cd_media_status(handle);
|
2001-04-10 05:04:59 +04:00
|
|
|
if (BX_GUI_THIS floppyA_status)
|
|
|
|
replace_bitmap(BX_GUI_THIS floppyA_hbar_id, BX_GUI_THIS floppyA_bmap_id);
|
|
|
|
else {
|
2001-09-26 04:15:30 +04:00
|
|
|
#if BX_WITH_MACOS
|
2001-04-10 05:04:59 +04:00
|
|
|
// If we are using the Mac floppy driver, eject the disk
|
2001-09-26 04:15:30 +04:00
|
|
|
// from the floppy drive. This doesn't work in MacOS X.
|
2001-06-21 18:56:43 +04:00
|
|
|
if (!strcmp(bx_options.floppya.Opath->get (), SuperDrive))
|
2001-04-10 05:04:59 +04:00
|
|
|
DiskEject(1);
|
|
|
|
#endif
|
|
|
|
replace_bitmap(BX_GUI_THIS floppyA_hbar_id, BX_GUI_THIS floppyA_eject_bmap_id);
|
|
|
|
}
|
2001-09-28 10:03:40 +04:00
|
|
|
if (BX_GUI_THIS floppyB_status)
|
|
|
|
replace_bitmap(BX_GUI_THIS floppyB_hbar_id, BX_GUI_THIS floppyB_bmap_id);
|
|
|
|
else {
|
|
|
|
#if BX_WITH_MACOS
|
|
|
|
// If we are using the Mac floppy driver, eject the disk
|
|
|
|
// from the floppy drive. This doesn't work in MacOS X.
|
|
|
|
if (!strcmp(bx_options.floppyb.Opath->get (), SuperDrive))
|
|
|
|
DiskEject(1);
|
|
|
|
#endif
|
|
|
|
replace_bitmap(BX_GUI_THIS floppyB_hbar_id, BX_GUI_THIS floppyB_eject_bmap_id);
|
|
|
|
}
|
2002-02-01 19:46:27 +03:00
|
|
|
if (BX_GUI_THIS cdromD_status)
|
|
|
|
replace_bitmap(BX_GUI_THIS cdromD_hbar_id, BX_GUI_THIS cdromD_bmap_id);
|
|
|
|
else {
|
|
|
|
replace_bitmap(BX_GUI_THIS cdromD_hbar_id, BX_GUI_THIS cdromD_eject_bmap_id);
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-09-28 10:03:40 +04:00
|
|
|
bx_gui_c::floppyA_handler(void)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2002-11-09 09:41:34 +03:00
|
|
|
if (!strcmp(bx_options.Osel_config->get_choice(bx_options.Osel_config->get()),
|
|
|
|
"wx")) {
|
|
|
|
// instead of just toggling the status, call wxWindows to bring up
|
|
|
|
// a dialog asking what disk image you want to switch to.
|
|
|
|
int ret = SIM->ask_param (BXP_FLOPPYA_PATH);
|
|
|
|
if (ret < 0) return; // cancelled
|
|
|
|
// eject and then insert the disk. If the new path is invalid,
|
|
|
|
// the status will return 0.
|
|
|
|
unsigned new_status = DEV_floppy_set_media_status(0, 0);
|
|
|
|
printf ("eject disk, new_status is %d\n", new_status);
|
|
|
|
new_status = DEV_floppy_set_media_status(0, 1);
|
|
|
|
printf ("insert disk, new_status is %d\n", new_status);
|
|
|
|
fflush (stdout);
|
|
|
|
BX_GUI_THIS floppyA_status = new_status;
|
|
|
|
} else {
|
|
|
|
BX_GUI_THIS floppyA_status = !BX_GUI_THIS floppyA_status;
|
|
|
|
DEV_floppy_set_media_status(0, BX_GUI_THIS floppyA_status);
|
|
|
|
}
|
2002-03-17 23:57:54 +03:00
|
|
|
BX_GUI_THIS update_drive_status_buttons ();
|
2001-09-28 10:03:40 +04:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2001-09-28 10:03:40 +04:00
|
|
|
void
|
|
|
|
bx_gui_c::floppyB_handler(void)
|
|
|
|
{
|
2002-11-09 09:41:34 +03:00
|
|
|
if (!strcmp(bx_options.Osel_config->get_choice(bx_options.Osel_config->get()),
|
|
|
|
"wx")) {
|
|
|
|
// instead of just toggling the status, call wxWindows to bring up
|
|
|
|
// a dialog asking what disk image you want to switch to.
|
|
|
|
int ret = SIM->ask_param (BXP_FLOPPYB_PATH);
|
|
|
|
if (ret < 0) return; // cancelled
|
|
|
|
// eject and then insert the disk. If the new path is invalid,
|
|
|
|
// the status will return 0.
|
|
|
|
unsigned new_status = DEV_floppy_set_media_status(1, 0);
|
|
|
|
printf ("eject disk, new_status is %d\n", new_status);
|
|
|
|
new_status = DEV_floppy_set_media_status(1, 1);
|
|
|
|
printf ("insert disk, new_status is %d\n", new_status);
|
|
|
|
fflush (stdout);
|
|
|
|
BX_GUI_THIS floppyB_status = new_status;
|
|
|
|
} else {
|
|
|
|
BX_GUI_THIS floppyB_status = !BX_GUI_THIS floppyB_status;
|
|
|
|
DEV_floppy_set_media_status(1, BX_GUI_THIS floppyB_status);
|
|
|
|
}
|
2002-03-17 23:57:54 +03:00
|
|
|
BX_GUI_THIS update_drive_status_buttons ();
|
2002-02-01 19:46:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
bx_gui_c::cdromD_handler(void)
|
|
|
|
{
|
2002-10-25 01:07:56 +04:00
|
|
|
Bit32u handle = DEV_hd_get_first_cd_handle();
|
2002-11-09 09:41:34 +03:00
|
|
|
if (!strcmp(bx_options.Osel_config->get_choice(bx_options.Osel_config->get()),
|
|
|
|
"wx")) {
|
|
|
|
// instead of just toggling the status, call wxWindows to bring up
|
|
|
|
// a dialog asking what disk image you want to switch to.
|
|
|
|
// BBD: for now, find the first cdrom and call ask_param on that.
|
|
|
|
// Since we could have multiple cdroms now, maybe we should be adding
|
|
|
|
// one cdrom button for each?
|
|
|
|
bx_param_c *cdrom = SIM->get_first_cdrom ();
|
|
|
|
if (cdrom == NULL)
|
|
|
|
return; // no cdrom found
|
|
|
|
int ret = SIM->ask_param (cdrom->get_id ());
|
|
|
|
if (ret < 0) return; // cancelled
|
|
|
|
// eject and then insert the disk. If the new path is invalid,
|
|
|
|
// the status will return 0.
|
|
|
|
unsigned status = DEV_hd_set_cd_media_status(handle, 0);
|
|
|
|
printf ("eject disk, new_status is %d\n", status);
|
|
|
|
status = DEV_hd_set_cd_media_status(handle, 1);
|
|
|
|
printf ("insert disk, new_status is %d\n", status);
|
|
|
|
fflush (stdout);
|
|
|
|
BX_GUI_THIS cdromD_status = status;
|
|
|
|
} else {
|
|
|
|
BX_GUI_THIS cdromD_status =
|
|
|
|
DEV_hd_set_cd_media_status(handle, !BX_GUI_THIS cdromD_status);
|
|
|
|
}
|
2002-03-17 23:57:54 +03:00
|
|
|
BX_GUI_THIS update_drive_status_buttons ();
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
bx_gui_c::reset_handler(void)
|
|
|
|
{
|
2001-05-30 22:56:02 +04:00
|
|
|
BX_INFO(( "system RESET callback." ));
|
2001-05-25 18:21:46 +04:00
|
|
|
bx_pc_system.ResetSignal( PCS_SET ); /* XXX is this right? */
|
|
|
|
for (int i=0; i<BX_SMP_PROCESSORS; i++)
|
|
|
|
BX_CPU(i)->reset(BX_RESET_HARDWARE);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
bx_gui_c::power_handler(void)
|
|
|
|
{
|
2001-06-15 22:01:52 +04:00
|
|
|
// the user pressed power button, so there's no doubt they want bochs
|
|
|
|
// to quit. Change panics to fatal for the GUI and then do a panic.
|
|
|
|
LOG_THIS setonoff(LOGLEV_PANIC, ACT_FATAL);
|
|
|
|
BX_PANIC (("POWER button turned off."));
|
|
|
|
// shouldn't reach this point, but if you do, QUIT!!!
|
|
|
|
fprintf (stderr, "Bochs is exiting because you pressed the power button.\n");
|
2002-04-18 04:22:20 +04:00
|
|
|
BX_EXIT (1);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2002-03-11 18:04:58 +03:00
|
|
|
Bit32s
|
|
|
|
bx_gui_c::make_text_snapshot (char **snapshot, Bit32u *length)
|
2001-11-10 01:17:33 +03:00
|
|
|
{
|
2002-03-11 18:04:58 +03:00
|
|
|
Bit8u* raw_snap = NULL;
|
|
|
|
char *clean_snap;
|
2002-02-12 20:09:51 +03:00
|
|
|
unsigned line_addr, txt_addr, txHeight, txWidth;
|
2002-02-04 23:31:35 +03:00
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
DEV_vga_get_text_snapshot(&raw_snap, &txHeight, &txWidth);
|
2002-03-11 18:04:58 +03:00
|
|
|
if (txHeight <= 0) return -1;
|
|
|
|
clean_snap = (char*) malloc(txHeight*(txWidth+2)+1);
|
|
|
|
txt_addr = 0;
|
|
|
|
for (unsigned i=0; i<txHeight; i++) {
|
|
|
|
line_addr = i * txWidth * 2;
|
|
|
|
for (unsigned j=0; j<(txWidth*2); j+=2) {
|
2002-10-22 21:30:54 +04:00
|
|
|
clean_snap[txt_addr++] = raw_snap[line_addr+j];
|
2002-02-04 23:31:35 +03:00
|
|
|
}
|
2002-11-09 09:41:34 +03:00
|
|
|
while ((txt_addr > 0) && (clean_snap[txt_addr-1] == ' ')) txt_addr--;
|
2002-03-10 08:49:26 +03:00
|
|
|
#ifdef WIN32
|
2002-10-22 21:30:54 +04:00
|
|
|
clean_snap[txt_addr++] = 13;
|
2002-03-11 18:04:58 +03:00
|
|
|
#endif
|
2002-10-22 21:30:54 +04:00
|
|
|
clean_snap[txt_addr++] = 10;
|
2002-03-11 18:04:58 +03:00
|
|
|
}
|
|
|
|
clean_snap[txt_addr] = 0;
|
|
|
|
*snapshot = clean_snap;
|
|
|
|
*length = txt_addr;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// create a text snapshot and copy to the system clipboard. On guis that
|
|
|
|
// we haven't figured out how to support yet, dump to a file instead.
|
|
|
|
void
|
|
|
|
bx_gui_c::copy_handler(void)
|
|
|
|
{
|
|
|
|
Bit32u len;
|
|
|
|
char *text_snapshot;
|
|
|
|
if (make_text_snapshot (&text_snapshot, &len) < 0) {
|
|
|
|
BX_INFO(( "copy button failed, mode not implemented"));
|
|
|
|
return;
|
|
|
|
}
|
2002-10-25 01:07:56 +04:00
|
|
|
if (!BX_GUI_THIS set_clipboard_text(text_snapshot, len)) {
|
2002-03-16 14:30:06 +03:00
|
|
|
// platform specific code failed, use portable code instead
|
|
|
|
FILE *fp = fopen("copy.txt", "w");
|
2002-12-12 06:41:51 +03:00
|
|
|
fwrite(text_snapshot, 1, len, fp);
|
2002-03-16 14:30:06 +03:00
|
|
|
fclose(fp);
|
|
|
|
}
|
2002-03-11 18:04:58 +03:00
|
|
|
free(text_snapshot);
|
|
|
|
}
|
|
|
|
|
2002-12-12 09:21:43 +03:00
|
|
|
// Check the current text snapshot against file snapchk.txt.
|
|
|
|
void
|
|
|
|
bx_gui_c::snapshot_checker(void * this_ptr)
|
|
|
|
{
|
|
|
|
char *text_snapshot;
|
|
|
|
Bit32u len;
|
|
|
|
if (make_text_snapshot (&text_snapshot, &len) < 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
char filename[BX_PATHNAME_LEN];
|
|
|
|
strcpy(filename,"snapchk.txt");
|
|
|
|
char *compare_snapshot = (char *) malloc((len+1) * sizeof(char));
|
|
|
|
FILE *fp = fopen(filename, "rb");
|
|
|
|
if(fp) {
|
|
|
|
fread(compare_snapshot, 1, len, fp);
|
|
|
|
fclose(fp);
|
|
|
|
if(!memcmp(text_snapshot,compare_snapshot,len)) {
|
|
|
|
BX_PANIC(("Test Passed."));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(compare_snapshot);
|
|
|
|
free(text_snapshot);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2002-03-11 18:04:58 +03:00
|
|
|
// create a text snapshot and dump it to a file
|
|
|
|
void
|
|
|
|
bx_gui_c::snapshot_handler(void)
|
|
|
|
{
|
|
|
|
char *text_snapshot;
|
|
|
|
Bit32u len;
|
|
|
|
if (make_text_snapshot (&text_snapshot, &len) < 0) {
|
2002-03-15 19:45:10 +03:00
|
|
|
BX_ERROR(( "snapshot button failed, mode not implemented"));
|
2002-03-11 18:04:58 +03:00
|
|
|
return;
|
2002-02-04 23:31:35 +03:00
|
|
|
}
|
2002-04-18 04:22:20 +04:00
|
|
|
//FIXME
|
|
|
|
char filename[BX_PATHNAME_LEN];
|
2002-11-09 09:41:34 +03:00
|
|
|
if (!strcmp(bx_options.Osel_config->get_choice(bx_options.Osel_config->get()),
|
|
|
|
"wx")) {
|
|
|
|
int ret = SIM->ask_filename (filename, sizeof(filename),
|
|
|
|
"Save snapshot as...", "snapshot.txt",
|
|
|
|
bx_param_string_c::SAVE_FILE_DIALOG);
|
|
|
|
if (ret < 0) { // cancelled
|
|
|
|
free(text_snapshot);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
strcpy (filename, "snapshot.txt");
|
2002-09-21 23:38:47 +04:00
|
|
|
}
|
|
|
|
FILE *fp = fopen(filename, "wb");
|
2002-12-12 06:41:51 +03:00
|
|
|
fwrite(text_snapshot, 1, len, fp);
|
2002-04-18 04:22:20 +04:00
|
|
|
fclose(fp);
|
2002-03-16 14:30:06 +03:00
|
|
|
free(text_snapshot);
|
2001-11-10 01:17:33 +03:00
|
|
|
}
|
|
|
|
|
2002-03-11 18:04:58 +03:00
|
|
|
// Read ASCII chars from the system clipboard and paste them into bochs.
|
|
|
|
// Note that paste cannot work with the key mapping tables loaded.
|
|
|
|
void
|
|
|
|
bx_gui_c::paste_handler(void)
|
|
|
|
{
|
|
|
|
Bit32s nbytes;
|
|
|
|
Bit8u *bytes;
|
|
|
|
if (!bx_keymap.isKeymapLoaded ()) {
|
|
|
|
BX_ERROR (("keyboard_mapping disabled, so paste cannot work"));
|
|
|
|
return;
|
|
|
|
}
|
2002-10-25 01:07:56 +04:00
|
|
|
if (!BX_GUI_THIS get_clipboard_text(&bytes, &nbytes)) {
|
2002-03-16 14:30:06 +03:00
|
|
|
BX_ERROR (("paste not implemented on this platform"));
|
|
|
|
return;
|
|
|
|
}
|
2002-03-11 18:04:58 +03:00
|
|
|
BX_INFO (("pasting %d bytes", nbytes));
|
2002-10-25 01:07:56 +04:00
|
|
|
DEV_kbd_paste_bytes (bytes, nbytes);
|
2002-03-11 18:04:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-10 01:17:33 +03:00
|
|
|
void
|
|
|
|
bx_gui_c::config_handler(void)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2002-10-25 01:07:56 +04:00
|
|
|
SIM->configuration_interface (NULL, CI_RUNTIME_CONFIG);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-06-23 07:18:14 +04:00
|
|
|
bx_gui_c::toggle_mouse_enable(void)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2001-06-20 18:01:39 +04:00
|
|
|
int old = bx_options.Omouse_enabled->get ();
|
2001-08-31 20:06:32 +04:00
|
|
|
BX_DEBUG (("toggle mouse_enabled, now %d", !old));
|
2001-06-20 18:01:39 +04:00
|
|
|
bx_options.Omouse_enabled->set (!old);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2002-08-09 10:16:43 +04:00
|
|
|
void
|
|
|
|
bx_gui_c::userbutton_handler(void)
|
|
|
|
{
|
|
|
|
unsigned shortcut[4];
|
2002-10-16 23:50:27 +04:00
|
|
|
unsigned p;
|
2002-08-09 10:16:43 +04:00
|
|
|
char *user_shortcut;
|
2002-11-09 09:41:34 +03:00
|
|
|
int i, len, ret = 1;
|
2002-08-09 10:16:43 +04:00
|
|
|
|
|
|
|
len = 0;
|
2002-11-09 09:41:34 +03:00
|
|
|
if (!strcmp(bx_options.Osel_config->get_choice(bx_options.Osel_config->get()),
|
|
|
|
"wx")) {
|
|
|
|
ret = SIM->ask_param (BXP_USER_SHORTCUT);
|
|
|
|
}
|
2002-08-25 16:32:54 +04:00
|
|
|
user_shortcut = bx_options.Ouser_shortcut->getptr();
|
|
|
|
if ((ret > 0) && user_shortcut[0] && (strcmp(user_shortcut, "none"))) {
|
2002-10-16 23:50:27 +04:00
|
|
|
len = 0;
|
|
|
|
p = 0;
|
|
|
|
while ((p < strlen(user_shortcut)) && (len < 3)) {
|
|
|
|
if (!strncmp(user_shortcut+p, "alt", 3)) {
|
|
|
|
shortcut[len] = BX_KEY_ALT_L;
|
|
|
|
len++;
|
|
|
|
p += 3;
|
|
|
|
} else if (!strncmp(user_shortcut+p, "ctrl", 4)) {
|
|
|
|
shortcut[len] = BX_KEY_CTRL_L;
|
|
|
|
len++;
|
|
|
|
p += 4;
|
|
|
|
} else if (!strncmp(user_shortcut+p, "del", 3)) {
|
|
|
|
shortcut[len] = BX_KEY_DELETE;
|
|
|
|
len++;
|
|
|
|
p += 3;
|
|
|
|
} else if (!strncmp(user_shortcut+p, "esc", 3)) {
|
|
|
|
shortcut[len] = BX_KEY_ESC;
|
|
|
|
len++;
|
|
|
|
p += 3;
|
|
|
|
} else if (!strncmp(user_shortcut+p, "f1", 2)) {
|
|
|
|
shortcut[len] = BX_KEY_F1;
|
|
|
|
len++;
|
|
|
|
p += 2;
|
|
|
|
} else if (!strncmp(user_shortcut+p, "f4", 2)) {
|
|
|
|
shortcut[len] = BX_KEY_F4;
|
|
|
|
len++;
|
|
|
|
p += 2;
|
|
|
|
} else if (!strncmp(user_shortcut+p, "tab", 3)) {
|
|
|
|
shortcut[len] = BX_KEY_TAB;
|
|
|
|
len++;
|
|
|
|
p += 3;
|
|
|
|
} else if (!strncmp(user_shortcut+p, "win", 3)) {
|
|
|
|
shortcut[len] = BX_KEY_WIN_L;
|
|
|
|
len++;
|
|
|
|
p += 3;
|
|
|
|
} else {
|
|
|
|
BX_ERROR(("Unknown shortcut %s ignored", user_shortcut));
|
2002-08-09 10:16:43 +04:00
|
|
|
}
|
2002-10-16 23:50:27 +04:00
|
|
|
}
|
2002-08-25 16:32:54 +04:00
|
|
|
i = 0;
|
2002-08-09 10:16:43 +04:00
|
|
|
while (i < len) {
|
2002-10-25 01:07:56 +04:00
|
|
|
DEV_kbd_gen_scancode(shortcut[i++]);
|
2002-08-09 10:16:43 +04:00
|
|
|
}
|
|
|
|
i--;
|
|
|
|
while (i >= 0) {
|
2002-10-25 01:07:56 +04:00
|
|
|
DEV_kbd_gen_scancode(shortcut[i--] | BX_KEY_RELEASED);
|
2002-08-09 10:16:43 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
void
|
2002-10-25 15:44:41 +04:00
|
|
|
bx_gui_c::mouse_enabled_changed (bx_bool val)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2001-06-23 07:18:14 +04:00
|
|
|
// This is only called when SIM->get_init_done is 1. Note that VAL
|
|
|
|
// is the new value of mouse_enabled, which may not match the old
|
|
|
|
// value which is still in bx_options.Omouse_enabled->get ().
|
2001-08-31 20:06:32 +04:00
|
|
|
BX_DEBUG (("replacing the mouse bitmaps"));
|
2001-06-17 03:08:32 +04:00
|
|
|
if (val)
|
2002-10-25 01:07:56 +04:00
|
|
|
BX_GUI_THIS replace_bitmap(BX_GUI_THIS mouse_hbar_id, BX_GUI_THIS mouse_bmap_id);
|
2001-06-10 00:01:12 +04:00
|
|
|
else
|
2002-10-25 01:07:56 +04:00
|
|
|
BX_GUI_THIS replace_bitmap(BX_GUI_THIS mouse_hbar_id, BX_GUI_THIS nomouse_bmap_id);
|
2001-06-23 07:18:14 +04:00
|
|
|
// give the GUI a chance to respond to the event. Most guis will hide
|
|
|
|
// the native mouse cursor and do something to trap the mouse inside the
|
|
|
|
// bochs VGA display window.
|
2002-10-25 01:07:56 +04:00
|
|
|
BX_GUI_THIS mouse_enabled_changed_specific (val);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
2001-05-09 00:18:04 +04:00
|
|
|
|
2002-09-21 23:38:47 +04:00
|
|
|
void
|
2001-05-09 00:18:04 +04:00
|
|
|
bx_gui_c::init_signal_handlers ()
|
|
|
|
{
|
|
|
|
#if BX_GUI_SIGHANDLER
|
2002-11-11 20:09:57 +03:00
|
|
|
if (bx_gui_sighandler)
|
2001-05-09 00:18:04 +04:00
|
|
|
{
|
2002-11-11 20:09:57 +03:00
|
|
|
Bit32u mask = bx_gui->get_sighandler_mask ();
|
|
|
|
for (Bit32u sig=0; sig<32; sig++)
|
|
|
|
{
|
|
|
|
if (mask & (1<<sig))
|
|
|
|
signal (sig, bx_signal_handler);
|
|
|
|
}
|
2001-05-09 00:18:04 +04:00
|
|
|
}
|
|
|
|
#endif
|
2002-09-08 11:56:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
bx_gui_c::set_text_charmap(Bit8u *fbuffer)
|
|
|
|
{
|
|
|
|
memcpy(& BX_GUI_THIS vga_charmap, fbuffer, 0x2000);
|
2002-09-21 23:38:47 +04:00
|
|
|
for (unsigned i=0; i<256; i++) BX_GUI_THIS char_changed[i] = 1;
|
|
|
|
BX_GUI_THIS charmap_updated = 1;
|
2002-09-19 22:59:50 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
bx_gui_c::set_text_charbyte(Bit16u address, Bit8u data)
|
|
|
|
{
|
|
|
|
BX_GUI_THIS vga_charmap[address] = data;
|
2002-09-21 23:38:47 +04:00
|
|
|
BX_GUI_THIS char_changed[address >> 5] = 1;
|
|
|
|
BX_GUI_THIS charmap_updated = 1;
|
2001-05-09 00:18:04 +04:00
|
|
|
}
|