Search Results

Search results 1-17 of 17.

This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.

  • MULTIEDIT cursor problem

    kyasar5 - - emWin related

    Post

    Hi Our emWin version is 5.32. Now, the cursor is seen when I give the Focus to the widget. However, although i called EnableBlink(), It is not blinking. Thanks Regards

  • MULTIEDIT cursor problem

    kyasar5 - - emWin related

    Post

    hi Thanks for reply, I changed the font but nothing changed. Callback of the widget seems to be fine. Could you send us a working example ? There is no example in Emwin Samples with blinking Cursor enabled. Thanks Regards

  • MULTIEDIT cursor problem

    kyasar5 - - emWin related

    Post

    Can anybody help ?

  • MULTIEDIT cursor problem

    kyasar5 - - emWin related

    Post

    Hi I could not enable the Cursor blink in MultiEdit widget. Moreover, there is no coloring support for the cursor (though exists in Edit widget). Cursor seems to be created with gray color but not blinking. Here is my MultiEdit widget creation procedure: Any help ? WM_HWIN hWin = MULTIEDIT_CreateEx(x0, y0, xSize, ySize * numLines, hParent,WM_CF_SHOW, MULTIEDIT_CF_INSERT, GUI_ID_MULTIEDIT0, maxLength, NULL); if (!hWin) { log_error("Cannot create EditBox"); return NULL; } WM_SetCallback(hWin, Gui_…

  • Arabic mode in MultiEdit Widget

    kyasar5 - - emWin related

    Post

    Hi all, 1) How can i align the cursor to right for Arabic-like languages ? 2) How to blink the cursor continuously ? Can anyone help, same issue ? Thanks Regards

  • ListBox Item not shown

    kyasar5 - - emWin related

    Post

    Hi EmWin users, I'm using ListBox to show menu list with OwnerDraws. In some cases, some of menuitems shall not be shown to user. I tried LISTBOX_SetItemdisabled() but it shows the item. I want to make it disappear and not to affect IncSel() and DecSel() APIs. How can it make it totally disappear ? Thanks Regards

  • Hi all, I want to desaturate the background window when a non-fullscreen window is created. In order to give unfocused effect for the old window to the user. Although the doc says it makes the window appear gray, I tried WM_DisableWindow() but didnt work. Can anyone help me how to do that ? thanks regards

  • Rounded Corner Window

    kyasar5 - - emWin related

    Post

    Hi Thanks you so much for your reminding about Alpha Blending. Here is my WM_PAINT callback and I enable Alpha at the begining then disabling at the end: case WM_PAINT: GUI_SetUserAlpha(&AlphaState, MARS_GUI_ALPHA_LEVEL); // Drawing GUI_RestoreUserAlpha(&AlphaState); break; Moreover, WM_SetHasTrans() is called in WM_CREATE stage of the windom. thanks Regards

  • Rounded Corner Window

    kyasar5 - - emWin related

    Post

    Hi, Thanks for your respond with source code. That really helped me. I used Transparent Window and in WM_PIANT I drawed Rounded Rectangle with alpha Blending.

  • Rounded Corner Window

    kyasar5 - - emWin related

    Post

    Hi all, Rather than using predefined Dialogs in lib, I wanted to create my custom dialog with Window widgets. What I want to do is to make corners rounded . How can I do that ? thanks Regards

  • Thanks ! That worked for me.

  • Hi all I am using ListBox widget to show menu items with OwnerDraw feature. EmWin autamatically adds a surrounding blackbox to Listbox widget afyer creation. How can i remove it ? Thanks Regards

  • Hi Please check clock of CRC module is enabled. GUI_Init () needs crc module to check memory consistency and algnmnt. Regards

  • Hi all, Is it possible to write a callback for a key which runs in all windows?

  • That swaps the bytes, I need to mirror 16bit data.

  • Hi all, I use emWin 5v28 on custome hardware based on STM32F7 with 4-line SPI interfaced r61505w LCD. I have implemented GUI_PORT_API functions (pfWrite16_A0, pfWrite16_A1, pfWriteM16_A1 etc) Although it works structurally, colors are spoiled, not correct. I realized that the reason is endianess of data given to multiple write function. Is there anyway to tell emWin lib to produce multiple data inversely? Thanks Regards

  • Hi, Please check CRC Clock. GUI_Init() make a mem access check by using CRC module in SoC so it must be enabled.