Package net.algart.arrays

Examples of net.algart.arrays.Arrays$MinMaxInfo


  int WindowResizeProc(int handle, int msg, int wParam, int lParam)
  {
    if (msg == OS.WM_GETMINMAXINFO && window.isThemeInstalled())
    {
      Rectangle bound = window.getShell().getDisplay().getPrimaryMonitor().getBounds();
      MINMAXINFO info = new MINMAXINFO();
      Extension.MoveMemory(info, lParam, MINMAXINFO.sizeof);
      if (info.ptMaxSize_x > 0 && info.ptMaxSize_y > 0)
      {
        Rectangle rect = org.sf.feeling.swt.win32.extension.shell.Windows
            .getWindowRect(org.sf.feeling.swt.win32.extension.shell.Windows
View Full Code Here

TOP

Related Classes of net.algart.arrays.Arrays$MinMaxInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.