Previous 199869 Revisions Next

r32821 Sunday 19th October, 2014 at 12:44:24 UTC by Andrew Gardner
Fixed strange display of long strings in Qt debugger (nw).
[src/emu/debug]debugcmd.c debughlp.c
[src/osd/modules/debugger/qt]debugqtview.c

trunk/src/osd/modules/debugger/qt/debugqtview.c
r32820r32821
254254               break;
255255            text.append(QChar(viewdata[viewDataOffset + width].byte));
256256         }
257           
257258         // Your characters are not guaranteed to take up the entire length x fontWidth x fontHeight, so fill before.
258259         painter.fillRect(x*fontWidth, y*fontHeight, width*fontWidth, fontHeight, bgBrush);
259         // Static text object
260         QStaticText staticText(text);
261         painter.drawStaticText(x*fontWidth, y*fontHeight, staticText);
260
261         // There is a touchy interplay between font height, drawing difference, visible position, etc
262         // Fonts don't get drawn "down and to the left" like boxes, so some wiggling is needed.
263         painter.drawText(x*fontWidth, (y*fontHeight + (fontHeight*0.80)), text);
262264      }
263265   }
264266}
trunk/src/emu/debug/debugcmd.c
r32820r32821
268268   }
269269
270270   /* add all the commands */
271   debug_console_register_command(machine, "help",      CMDFLAG_NONE, 0, 0, 2, execute_help);
271   debug_console_register_command(machine, "help",      CMDFLAG_NONE, 0, 0, 1, execute_help);
272272   debug_console_register_command(machine, "print",     CMDFLAG_NONE, 0, 1, MAX_COMMAND_PARAMS, execute_print);
273273   debug_console_register_command(machine, "printf",    CMDFLAG_NONE, 0, 1, MAX_COMMAND_PARAMS, execute_printf);
274274   debug_console_register_command(machine, "logerror",  CMDFLAG_NONE, 0, 1, MAX_COMMAND_PARAMS, execute_logerror);
r32820r32821
678678{
679679   if (params == 0)
680680      debug_console_printf_wrap(machine, 80, "%s\n", debug_get_help(""));
681   else if (params == 1)
681   else
682682      debug_console_printf_wrap(machine, 80, "%s\n", debug_get_help(param[0]));
683   else if (params == 2)
684   {
685      UINT64 width;
686      debug_command_parameter_number(machine, param[1], &width);
687      debug_console_printf_wrap(machine, (int)width, "%s\n", debug_get_help(param[0]));
688   }
689683}
690684
691685
trunk/src/emu/debug/debughlp.c
r32820r32821
12131213      "\n"
12141214      "  memdump [<filename>]\n"
12151215      "\n"
1216      "Dumps the current memory map to <filename>. If <filename> is omitted, then dumps\n"
1217      "to memdump.log"
1216      "Dumps the current memory map to <filename>. If <filename> is omitted, then dumps to memdump.log"
12181217      "\n"
12191218      "Examples:\n"
12201219      "\n"

Previous 199869 Revisions Next


© 1997-2024 The MAME Team