Search Results

Search results 1-3 of 3.

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

  • Moving the content of a window

    marc345 - - emWin related

    Post

    Thanks for the great reply Florian. I was wondering if the same behaviour is also possible with a more "static" content. The content of my window is not created in the WM_PAIN case of the callback function but right after the creation of the window. I attached some example code to clarify more what I mean: The BuiltIn Button Widget also used and several Buttons are created, this has no practical use but should just somehow use all the screen size in y-direction and even more and thus I need to m…

  • Moving the content of a window

    marc345 - - emWin related

    Post

    Hello I want to move the content (some widgets) of a window, I already found an example in another forum disccusion which i attached below. I also already looked through the MOTION part of the manuel but my issues couldn't get solved. What I done so far: I set the creation flags WM_CF_MOTION_Y (i want to move in y direction as compared to x direction in the example) and I called WM_MOTION_Enable(1). I think don't get quite what is happening in the callback routine. The way I think it is working …

  • Hello everyone I'm currently working with emWim to implement a GUI for a signal generator. The GUI consists of several windows and some buttons at the bottom of the screen to switch between the windows (like register tabs). These buttons basically make up my "menu" for navigating through the GUI. However in some windows there are too many settings to be displayed on the screen such that I need to hide the Menu. Now the buttons are all created in the main window, from this window also the seperat…