Fixing our multiple report pixel transfer.
Implementing support for off screen mode which is now the default.
On screen mode is there for debug pruposes.
1 /*******************************************************
2 Demo Program for HIDAPI
9 Copyright 2010, All Rights Reserved
11 This contents of this file may be used by anyone
12 for any reason without any conditions and may be
13 used as a starting point for your own applications
15 ********************************************************/
17 #include "MainWindow.h"
20 // FOX 1.7 changes the timeouts to all be nanoseconds.
21 // Fox 1.6 had all timeouts as milliseconds.
23 const int timeout_scalar = 1000*1000;
25 const int timeout_scalar = 1;
29 FXDEFMAP(MainWindow) MainWindowMap [] = {
30 FXMAPFUNC(SEL_COMMAND, MainWindow::ID_CONNECT, MainWindow::onConnect ),
31 FXMAPFUNC(SEL_COMMAND, MainWindow::ID_DISCONNECT, MainWindow::onDisconnect ),
32 FXMAPFUNC(SEL_COMMAND, MainWindow::ID_RESCAN, MainWindow::onScan ),
33 FXMAPFUNC(SEL_COMMAND, MainWindow::ID_SEND_OUTPUT_REPORT, MainWindow::onSendOutputReport ),
34 FXMAPFUNC(SEL_COMMAND, MainWindow::ID_SEND_FEATURE_REPORT, MainWindow::onSendFeatureReport ),
35 FXMAPFUNC(SEL_COMMAND, MainWindow::ID_GET_FEATURE_REPORT, MainWindow::onGetFeatureReport ),
36 FXMAPFUNC(SEL_COMMAND, MainWindow::ID_CLEAR, MainWindow::onClear ),
37 FXMAPFUNC(SEL_COMMAND, MainWindow::ID_FUTABA_CLEAR_DISPLAY, MainWindow::onFutabaClearDisplay ),
38 FXMAPFUNC(SEL_COMMAND, MainWindow::ID_FUTABA_DIMMING, MainWindow::onFutabaDimming ),
39 FXMAPFUNC(SEL_COMMAND, MainWindow::ID_FUTABA_DISPLAY_DATA_INPUT, MainWindow::onFutabaDisplayDataInput ),
40 FXMAPFUNC(SEL_COMMAND, MainWindow::ID_FUTABA_READ_ID, MainWindow::onFutabaReadId ),
41 FXMAPFUNC(SEL_COMMAND, MainWindow::ID_FUTABA_READ_FIRMWARE_REVISION, MainWindow::onFutabaReadFirmwareRevision ),
42 FXMAPFUNC(SEL_COMMAND, MainWindow::ID_FUTABA_POWER_SUPPLY_MONITOR, MainWindow::onFutabaPowerSupplyMonitor ),
43 FXMAPFUNC(SEL_COMMAND, MainWindow::ID_FUTABA_SET_PIXEL, MainWindow::onFutabaSetPixel ),
44 FXMAPFUNC(SEL_COMMAND, MainWindow::ID_FUTABA_RESET_PIXEL, MainWindow::onFutabaResetPixel ),
45 FXMAPFUNC(SEL_COMMAND, MainWindow::ID_FUTABA_SET_ALL_PIXELS, MainWindow::onFutabaSetAllPixels ),
46 FXMAPFUNC(SEL_COMMAND, MainWindow::ID_FUTABA_SET_DISPLAY_POSITION, MainWindow::onFutabaSetDisplayPosition ),
47 FXMAPFUNC(SEL_COMMAND, MainWindow::ID_FUTABA_TOGGLE_OFF_SCREEN_MODE, MainWindow::onFutabaToggleOffScreenMode ),
48 FXMAPFUNC(SEL_COMMAND, MainWindow::ID_SELECT_FONT, MainWindow::onSelectFont ),
49 FXMAPFUNC(SEL_TIMEOUT, MainWindow::ID_TIMER, MainWindow::onTimeout ),
50 FXMAPFUNC(SEL_TIMEOUT, MainWindow::ID_MAC_TIMER, MainWindow::onMacTimeout ),
53 FXIMPLEMENT(MainWindow, FXMainWindow, MainWindowMap, ARRAYNUMBER(MainWindowMap));
55 MainWindow::MainWindow(FXApp *app)
56 : FXMainWindow(app, "HIDAPI Test Application", NULL, NULL, DECOR_ALL, 200,100, 600,900),
60 iBrightness=iVfd01.MaxBrightness();
62 connected_device = NULL;
64 FXVerticalFrame *vf = new FXVerticalFrame(this, LAYOUT_FILL_Y|LAYOUT_FILL_X);
66 FXLabel *label = new FXLabel(vf, "HIDAPI Test Tool");
67 title_font = new FXFont(getApp(), "Arial", 14, FXFont::Bold);
68 label->setFont(title_font);
71 "Select a device and press Connect.", NULL, JUSTIFY_LEFT);
73 "Output data bytes can be entered in the Output section, \n"
74 "separated by space, comma or brackets. Data starting with 0x\n"
75 "is treated as hex. Data beginning with a 0 is treated as \n"
76 "octal. All other data is treated as decimal.", NULL, JUSTIFY_LEFT);
78 "Data received from the device appears in the Input section.",
81 "Optionally, a report length may be specified. Extra bytes are\n"
82 "padded with zeros. If no length is specified, the length is \n"
83 "inferred from the data.",
87 // Device List and Connect/Disconnect buttons
88 FXHorizontalFrame *hf = new FXHorizontalFrame(vf, LAYOUT_FILL_X);
89 //device_list = new FXList(new FXHorizontalFrame(hf,FRAME_SUNKEN|FRAME_THICK, 0,0,0,0, 0,0,0,0), NULL, 0, LISTBOX_NORMAL|LAYOUT_FILL_X|LAYOUT_FILL_Y|LAYOUT_FIX_WIDTH|LAYOUT_FIX_HEIGHT, 0,0,300,200);
90 device_list = new FXList(new FXHorizontalFrame(hf,FRAME_SUNKEN|FRAME_THICK|LAYOUT_FILL_X|LAYOUT_FILL_Y, 0,0,0,0, 0,0,0,0), NULL, 0, LISTBOX_NORMAL|LAYOUT_FILL_X|LAYOUT_FILL_Y, 0,0,300,200);
91 FXVerticalFrame *buttonVF = new FXVerticalFrame(hf);
92 connect_button = new FXButton(buttonVF, "Connect", NULL, this, ID_CONNECT, BUTTON_NORMAL|LAYOUT_FILL_X);
93 disconnect_button = new FXButton(buttonVF, "Disconnect", NULL, this, ID_DISCONNECT, BUTTON_NORMAL|LAYOUT_FILL_X);
94 disconnect_button->disable();
95 rescan_button = new FXButton(buttonVF, "Scan devices", NULL, this, ID_RESCAN, BUTTON_NORMAL|LAYOUT_FILL_X);
96 new FXHorizontalFrame(buttonVF, 0, 0,0,0,0, 0,0,50,0);
98 connected_label = new FXLabel(vf, "Disconnected");
101 new FXHorizontalFrame(vf);
102 FXGroupBox *gb = new FXGroupBox(vf, "Fonts", FRAME_GROOVE|LAYOUT_FILL_X);
103 FXMatrix *matrix = new FXMatrix(gb, 3, MATRIX_BY_COLUMNS|LAYOUT_FILL_X);
104 iButtonSelectFont = new FXButton(matrix, "Select Font", NULL, this, ID_SELECT_FONT, BUTTON_NORMAL|LAYOUT_FILL_X);
106 //Futaba VFD commands
107 new FXHorizontalFrame(vf);
108 gb = new FXGroupBox(vf, "Futaba GP1212A01A", FRAME_GROOVE|LAYOUT_FILL_X);
109 matrix = new FXMatrix(gb, 3, MATRIX_BY_COLUMNS|LAYOUT_FILL_X);
110 iButtonClearDisplay = new FXButton(matrix, "Clear Display", NULL, this, ID_FUTABA_CLEAR_DISPLAY, BUTTON_NORMAL|LAYOUT_FILL_X);
111 iButtonBrightness = new FXButton(matrix, "Brightness", NULL, this, ID_FUTABA_DIMMING, BUTTON_NORMAL|LAYOUT_FILL_X);
112 iButtonDisplayDataInput = new FXButton(matrix, "Display Data Input", NULL, this, ID_FUTABA_DISPLAY_DATA_INPUT, BUTTON_NORMAL|LAYOUT_FILL_X);
113 iButtonReadId = new FXButton(matrix, "Read Id", NULL, this, ID_FUTABA_READ_ID, BUTTON_NORMAL|LAYOUT_FILL_X);
114 iButtonReadFirmwareRevision = new FXButton(matrix, "Read Firmware Revision", NULL, this, ID_FUTABA_READ_FIRMWARE_REVISION, BUTTON_NORMAL|LAYOUT_FILL_X);
115 iButtonPowerSupplyMonitor = new FXButton(matrix, "Power Supply Monitor", NULL, this, ID_FUTABA_POWER_SUPPLY_MONITOR, BUTTON_NORMAL|LAYOUT_FILL_X);
116 new FXLabel(matrix, "X",NULL,LABEL_NORMAL|LAYOUT_FILL_X);
117 new FXLabel(matrix, "Y",NULL,LABEL_NORMAL|LAYOUT_FILL_X);
118 new FXLabel(matrix, "",NULL,LABEL_NORMAL|LAYOUT_FILL_X);
119 iTextFieldX = new FXTextField(matrix, 3, NULL, 0, TEXTFIELD_NORMAL|TEXTFIELD_INTEGER|LAYOUT_FILL_X);
120 iTextFieldY = new FXTextField(matrix, 3, NULL, 0, TEXTFIELD_NORMAL|TEXTFIELD_INTEGER|LAYOUT_FILL_X);
121 iButtonSetPixel = new FXButton(matrix, "Set Pixel", NULL, this, ID_FUTABA_SET_PIXEL, BUTTON_NORMAL|LAYOUT_FILL_X);
122 iButtonResetPixel = new FXButton(matrix, "Reset Pixel", NULL, this, ID_FUTABA_RESET_PIXEL, BUTTON_NORMAL|LAYOUT_FILL_X);
124 iButtonSetAllPixels = new FXButton(matrix, "Set All Pixels", NULL, this, ID_FUTABA_SET_ALL_PIXELS, BUTTON_NORMAL|LAYOUT_FILL_X);
125 iButtonSetDisplayPosition = new FXButton(matrix, "Set Display Position", NULL, this, ID_FUTABA_SET_DISPLAY_POSITION, BUTTON_NORMAL|LAYOUT_FILL_X);
126 iButtonToggleOffScreenMode = new FXButton(matrix, "Switch to on-screen", NULL, this, ID_FUTABA_TOGGLE_OFF_SCREEN_MODE, BUTTON_NORMAL|LAYOUT_FILL_X);
130 new FXHorizontalFrame(vf);
131 gb = new FXGroupBox(vf, "Output", FRAME_GROOVE|LAYOUT_FILL_X);
132 matrix = new FXMatrix(gb, 3, MATRIX_BY_COLUMNS|LAYOUT_FILL_X);
133 new FXLabel(matrix, "Data");
134 new FXLabel(matrix, "Length");
135 new FXLabel(matrix, "");
137 //hf = new FXHorizontalFrame(gb, LAYOUT_FILL_X);
138 output_text = new FXTextField(matrix, 30, NULL, 0, TEXTFIELD_NORMAL|LAYOUT_FILL_X|LAYOUT_FILL_COLUMN);
139 output_text->setText("1 0x81 0");
140 output_len = new FXTextField(matrix, 5, NULL, 0, TEXTFIELD_NORMAL|LAYOUT_FILL_X|LAYOUT_FILL_COLUMN);
141 output_button = new FXButton(matrix, "Send Output Report", NULL, this, ID_SEND_OUTPUT_REPORT, BUTTON_NORMAL|LAYOUT_FILL_X);
142 output_button->disable();
143 //new FXHorizontalFrame(matrix, LAYOUT_FILL_X);
145 //hf = new FXHorizontalFrame(gb, LAYOUT_FILL_X);
146 feature_text = new FXTextField(matrix, 30, NULL, 0, TEXTFIELD_NORMAL|LAYOUT_FILL_X|LAYOUT_FILL_COLUMN);
147 feature_len = new FXTextField(matrix, 5, NULL, 0, TEXTFIELD_NORMAL|LAYOUT_FILL_X|LAYOUT_FILL_COLUMN);
148 feature_button = new FXButton(matrix, "Send Feature Report", NULL, this, ID_SEND_FEATURE_REPORT, BUTTON_NORMAL|LAYOUT_FILL_X);
149 feature_button->disable();
151 get_feature_text = new FXTextField(matrix, 30, NULL, 0, TEXTFIELD_NORMAL|LAYOUT_FILL_X|LAYOUT_FILL_COLUMN);
152 new FXWindow(matrix);
153 get_feature_button = new FXButton(matrix, "Get Feature Report", NULL, this, ID_GET_FEATURE_REPORT, BUTTON_NORMAL|LAYOUT_FILL_X);
154 get_feature_button->disable();
158 gb = new FXGroupBox(vf, "Input", FRAME_GROOVE|LAYOUT_FILL_X|LAYOUT_FILL_Y);
159 FXVerticalFrame *innerVF = new FXVerticalFrame(gb, LAYOUT_FILL_X|LAYOUT_FILL_Y);
160 input_text = new FXText(new FXHorizontalFrame(innerVF,LAYOUT_FILL_X|LAYOUT_FILL_Y|FRAME_SUNKEN|FRAME_THICK, 0,0,0,0, 0,0,0,0), NULL, 0, LAYOUT_FILL_X|LAYOUT_FILL_Y);
161 input_text->setEditable(false);
162 new FXButton(innerVF, "Clear", NULL, this, ID_CLEAR, BUTTON_NORMAL|LAYOUT_RIGHT);
164 SetConnectedStates();
168 MainWindow::~MainWindow()
176 if (connected_device)
177 hid_close(connected_device);
185 FXMainWindow::create();
188 onScan(NULL, 0, NULL);
190 //Try to connect to our VFD from start-up
193 //iVfd01.SetAllPixels(true);
195 SetConnectedStates();
199 init_apple_message_system();
202 getApp()->addTimeout(this, ID_MAC_TIMER,
203 50 * timeout_scalar /*50ms*/);
207 MainWindow::onConnect(FXObject *sender, FXSelector sel, void *ptr)
209 if (connected_device != NULL)
212 FXint cur_item = device_list->getCurrentItem();
215 FXListItem *item = device_list->getItem(cur_item);
218 struct hid_device_info *device_info = (struct hid_device_info*) item->getData();
222 connected_device = hid_open_path(device_info->path);
224 if (!connected_device) {
225 FXMessageBox::error(this, MBOX_OK, "Device Error", "Unable To Connect to Device");
229 hid_set_nonblocking(connected_device, 1);
232 iOutputReportBuffer=new unsigned char[KFutabaMaxHidReportSize];
234 SetConnectedStates();
240 Tell whether or not we are currently connected to an HID device.
242 bool MainWindow::IsConnected()
244 return (connected_device||iVfd01.IsOpen());
248 Update our UI states depending on whether or not we are connected to a device
250 void MainWindow::SetConnectedStates()
254 //Start pulling for input report
255 getApp()->addTimeout(this, ID_TIMER, 5 * timeout_scalar /*5ms*/);
258 //s.format("Connected to: %04hx:%04hx -", device_info->vendor_id, device_info->product_id);
259 s.format("Connected to: ");
260 if (connected_device)
263 hid_get_manufacturer_string(connected_device,string,sizeof(string));
264 s += FXString(" ") + string;
265 hid_get_product_string(connected_device,string,sizeof(string));
266 s += FXString(" ") + string;
270 s += iVfd01.Vendor();
271 s += iVfd01.Product();
272 s += iVfd01.SerialNumber();
274 connected_label->setText(s);
275 output_button->enable();
276 feature_button->enable();
277 get_feature_button->enable();
278 connect_button->disable();
279 disconnect_button->enable();
280 input_text->setText("");
284 //Those widgets are specific to our VFD
285 iButtonClearDisplay->enable();
286 iButtonBrightness->enable();
287 iButtonDisplayDataInput->enable();
288 iButtonReadId->enable();
289 iButtonReadFirmwareRevision->enable();
290 iButtonPowerSupplyMonitor->enable();
291 iTextFieldX->enable();
292 iTextFieldY->enable();
293 iButtonSetPixel->enable();
294 iButtonResetPixel->enable();
295 iButtonSetAllPixels->enable();
296 iButtonSetDisplayPosition->enable();
297 iButtonToggleOffScreenMode->enable();
302 //Stop pulling for input report
303 getApp()->removeTimeout(this, ID_TIMER);
305 connected_label->setText("Disconnected");
306 output_button->disable();
307 feature_button->disable();
308 get_feature_button->disable();
309 connect_button->enable();
310 disconnect_button->disable();
312 iButtonClearDisplay->disable();
313 iButtonBrightness->disable();
314 iButtonDisplayDataInput->disable();
315 iButtonReadId->disable();
316 iButtonReadFirmwareRevision->disable();
317 iButtonPowerSupplyMonitor->disable();
318 iTextFieldX->disable();
319 iTextFieldY->disable();
320 iButtonSetPixel->disable();
321 iButtonResetPixel->disable();
322 iButtonSetAllPixels->disable();
323 iButtonSetDisplayPosition->disable();
324 iButtonToggleOffScreenMode->disable();
331 MainWindow::onDisconnect(FXObject *sender, FXSelector sel, void *ptr)
333 //Close all our devices.
334 //Closing devices which are not open won't harm.
335 hid_close(connected_device);
336 connected_device = NULL;
339 delete iOutputReportBuffer;
340 iOutputReportBuffer=NULL;
342 SetConnectedStates();
348 MainWindow::onScan(FXObject *sender, FXSelector sel, void *ptr)
350 struct hid_device_info *cur_dev;
352 device_list->clearItems();
355 hid_free_enumeration(devices);
356 devices = hid_enumerate(0x0, 0x0);
359 // Add it to the List Box only if it is a Futaba device
360 //if (cur_dev->vendor_id == KFutabaVendorId)
364 s.format("%04hx:%04hx -", cur_dev->vendor_id, cur_dev->product_id);
365 s += FXString(" ") + cur_dev->manufacturer_string;
366 s += FXString(" ") + cur_dev->product_string;
367 usage_str.format(" (usage: %04hx:%04hx) ", cur_dev->usage_page, cur_dev->usage);
369 FXListItem *li = new FXListItem(s, NULL, cur_dev);
370 device_list->appendItem(li);
373 cur_dev = cur_dev->next;
376 if (device_list->getNumItems() == 0)
377 device_list->appendItem("*** No Devices Connected ***");
379 device_list->selectItem(0);
386 MainWindow::getDataFromTextField(FXTextField *tf, char *buf, size_t len)
388 const char *delim = " ,{}\t\r\n";
389 FXString data = tf->getText();
390 const FXchar *d = data.text();
393 // Copy the string from the GUI.
394 size_t sz = strlen(d);
395 char *str = (char*) malloc(sz+1);
398 // For each token in the string, parse and store in buf[].
399 char *token = strtok(str, delim);
402 long int val = strtol(token, &endptr, 0);
404 token = strtok(NULL, delim);
411 /* getLengthFromTextField()
415 -1: invalid length */
417 MainWindow::getLengthFromTextField(FXTextField *tf)
420 FXString str = tf->getText();
421 size_t sz = str.length();
425 len = strtol(str.text(), &endptr, 0);
426 if (endptr != str.text() && *endptr == '\0') {
428 FXMessageBox::error(this, MBOX_OK, "Invalid length", "Enter a length greater than zero.");
441 MainWindow::onSendOutputReport(FXObject *sender, FXSelector sel, void *ptr)
444 size_t data_len, len;
447 memset(buf, 0x0, sizeof(buf));
448 textfield_len = getLengthFromTextField(output_len);
449 data_len = getDataFromTextField(output_text, buf, sizeof(buf));
451 if (textfield_len < 0) {
452 FXMessageBox::error(this, MBOX_OK, "Invalid length", "Length field is invalid. Please enter a number in hex, octal, or decimal.");
456 if (textfield_len > sizeof(buf)) {
457 FXMessageBox::error(this, MBOX_OK, "Invalid length", "Length field is too long.");
461 len = (textfield_len)? textfield_len: data_len;
463 int res = hid_write(connected_device, (const unsigned char*)buf, len);
465 FXMessageBox::error(this, MBOX_OK, "Error Writing", "Could not write to device. Error reported was: %ls", hid_error(connected_device));
472 MainWindow::onSendFeatureReport(FXObject *sender, FXSelector sel, void *ptr)
475 size_t data_len, len;
478 memset(buf, 0x0, sizeof(buf));
479 textfield_len = getLengthFromTextField(feature_len);
480 data_len = getDataFromTextField(feature_text, buf, sizeof(buf));
482 if (textfield_len < 0) {
483 FXMessageBox::error(this, MBOX_OK, "Invalid length", "Length field is invalid. Please enter a number in hex, octal, or decimal.");
487 if (textfield_len > sizeof(buf)) {
488 FXMessageBox::error(this, MBOX_OK, "Invalid length", "Length field is too long.");
492 len = (textfield_len)? textfield_len: data_len;
494 int res = hid_send_feature_report(connected_device, (const unsigned char*)buf, len);
496 FXMessageBox::error(this, MBOX_OK, "Error Writing", "Could not send feature report to device. Error reported was: %ls", hid_error(connected_device));
503 MainWindow::onGetFeatureReport(FXObject *sender, FXSelector sel, void *ptr)
508 memset(buf, 0x0, sizeof(buf));
509 len = getDataFromTextField(get_feature_text, buf, sizeof(buf));
512 FXMessageBox::error(this, MBOX_OK, "Too many numbers", "Enter only a single report number in the text field");
515 int res = hid_get_feature_report(connected_device, (unsigned char*)buf, sizeof(buf));
517 FXMessageBox::error(this, MBOX_OK, "Error Getting Report", "Could not get feature report from device. Error reported was: %ls", hid_error(connected_device));
522 s.format("Returned Feature Report. %d bytes:\n", res);
523 for (int i = 0; i < res; i++) {
525 t.format("%02hhx ", buf[i]);
533 input_text->appendText(s);
534 input_text->setBottomLine(INT_MAX);
541 MainWindow::onClear(FXObject *sender, FXSelector sel, void *ptr)
543 input_text->setText("");
549 MainWindow::onFutabaClearDisplay(FXObject *sender, FXSelector sel, void *ptr)
552 iVfd01.SwapBuffers();
557 MainWindow::onFutabaDimming(FXObject *sender, FXSelector sel, void *ptr)
559 iBrightness = (iBrightness==iVfd01.MaxBrightness()?iVfd01.MinBrightness():++iBrightness);
560 iVfd01.SetBrightness(iBrightness);
565 MainWindow::onFutabaDisplayDataInput(FXObject *sender, FXSelector sel, void *ptr)
567 //@1B 5B F0 00 00 07 00 01 FF
569 memset(iOutputReportBuffer, 0x0, KFutabaMaxHidReportSize);
570 iOutputReportBuffer[0]=0x00; //Report ID
571 iOutputReportBuffer[1]=0x09; //Report length
572 iOutputReportBuffer[2]=0x1B; //
573 iOutputReportBuffer[3]=0x5B; //
574 iOutputReportBuffer[4]=0xF0; //
575 iOutputReportBuffer[5]=0x00; //X
576 iOutputReportBuffer[6]=0x00; //Y
577 iOutputReportBuffer[7]=0x07; //
578 iOutputReportBuffer[8]=0x00; //
579 iOutputReportBuffer[9]=0x01; //
580 iOutputReportBuffer[10]=0xFF; //
581 int res = hid_write(connected_device, iOutputReportBuffer, KFutabaMaxHidReportSize);
589 long MainWindow::onFutabaSetPixel(FXObject *sender, FXSelector sel, void *ptr)
593 iTextFieldX->getText().scan("%d",&x);
594 iTextFieldY->getText().scan("%d",&y);
595 //SetPixel(x,y,0x01);
596 iVfd01.SetPixel(x,y,true);
597 iVfd01.SwapBuffers();
603 long MainWindow::onFutabaResetPixel(FXObject *sender, FXSelector sel, void *ptr)
607 iTextFieldX->getText().scan("%d",&x);
608 iTextFieldY->getText().scan("%d",&y);
609 //SetPixel(x,y,0x00);
610 iVfd01.SetPixel(x,y,false);
611 iVfd01.SwapBuffers();
615 long MainWindow::onFutabaSetAllPixels(FXObject *sender, FXSelector sel, void *ptr)
617 iVfd01.SetAllPixels(0xFF);
618 iVfd01.SwapBuffers();
626 long MainWindow::onFutabaSetDisplayPosition(FXObject *sender, FXSelector sel, void *ptr)
630 iTextFieldX->getText().scan("%d",&x);
631 iTextFieldY->getText().scan("%d",&y);
632 iVfd01.SetDisplayPosition(x,y);
640 long MainWindow::onFutabaToggleOffScreenMode(FXObject *sender, FXSelector sel, void *ptr)
642 iVfd01.ToggleOffScreenMode();
643 if (iVfd01.OffScreenMode())
645 iButtonToggleOffScreenMode->setText("Switch to on-screen");
649 iButtonToggleOffScreenMode->setText("Switch to off-screen");
658 MainWindow::onFutabaReadId(FXObject *sender, FXSelector sel, void *ptr)
665 MainWindow::onFutabaReadFirmwareRevision(FXObject *sender, FXSelector sel, void *ptr)
667 iVfd01.RequestFirmwareRevision();
672 MainWindow::onFutabaPowerSupplyMonitor(FXObject *sender, FXSelector sel, void *ptr)
674 iVfd01.RequestPowerSupplyStatus();
681 MainWindow::onTimeout(FXObject *sender, FXSelector sel, void *ptr)
683 FutabaVfdReport report;
684 unsigned char buffer[256];
685 unsigned char* buf=NULL;
688 //Use either our display or our generic device depending which one is connected
689 if (connected_device)
691 res = hid_read(connected_device, buffer, sizeof(buffer));
696 res=iVfd01.Read(report);
702 s.format("Received %d bytes:\n", res);
703 for (int i = 0; i < res; i++) {
705 t.format("%02hhx ", buf[i]);
713 input_text->appendText(s);
714 input_text->setBottomLine(INT_MAX);
717 input_text->appendText("hid_read() returned error\n");
718 input_text->setBottomLine(INT_MAX);
722 getApp()->addTimeout(this, ID_TIMER,
723 5 * timeout_scalar /*5ms*/);
728 MainWindow::onMacTimeout(FXObject *sender, FXSelector sel, void *ptr)
731 check_apple_events();
733 getApp()->addTimeout(this, ID_MAC_TIMER,
734 50 * timeout_scalar /*50ms*/);
743 long MainWindow::onSelectFont(FXObject *sender, FXSelector sel, void *ptr)
745 FXFontDialog* dlg=new FXFontDialog(this,"Pick a font");
748 dlg->getFontSelection(iCurrentFontDesc);
751 iCurrentFont = new FXFont(getApp(),iCurrentFontDesc);
752 iCurrentFont->create();
757 FXString text="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-[]{}();%$£&~#|_";
758 //Create an image the proper size for our text
759 iFontImage = new FXTGAImage(getApp(),NULL,IMAGE_SHMI|IMAGE_SHMP,iCurrentFont->getTextWidth(text),iCurrentFont->getFontHeight());
760 iFontImage->create();
761 //Perform our drawing
763 FXDCWindow dc(iFontImage);
764 //dc.begin(iFontImage);
765 dc.setFont(iCurrentFont);
766 dc.setForeground(0xFFFFFFFF);
767 //dc.setBackground(0xFF000000);
768 //dc.setFillStyle(FILL_SOLID);
769 dc.fillRectangle(0,0,iFontImage->getWidth(),iFontImage->getHeight());
770 dc.setForeground(0xFF000000);
771 dc.drawText(0,iCurrentFont->getFontAscent(),text);
775 file.open("fonttest.tga",FXStreamSave);
776 iFontImage->restore();
777 iFontImage->savePixels(file);