Examples of FLASHWINFO


Examples of org.sf.feeling.swt.win32.internal.extension.FLASHWINFO

   * @return return true if do the operation successfully, else return false.
   *
   */
  public static boolean flashWindow(int hwnd, boolean flash)
  {
    FLASHWINFO flashInfo = new FLASHWINFO();
    if (flash) flashInfo.dwFlags = FLASHWINFO.FLASHW_ALL | FLASHWINFO.FLASHW_TIMER;
    flashInfo.hwnd = hwnd;
    return Extension.FlashWindowEx(flashInfo);
  }
View Full Code Here

Examples of org.sf.feeling.swt.win32.internal.extension.FLASHWINFO

    return Extension.FlashWindowEx(flashInfo);
  }

  public static boolean flashWindow(int hwnd, int timeout, int count)
  {
    FLASHWINFO flashInfo = new FLASHWINFO();
    flashInfo.dwFlags = FLASHWINFO.FLASHW_ALL | FLASHWINFO.FLASHW_TIMER;
    flashInfo.dwTimeout = timeout;
    flashInfo.uCount = count;
    flashInfo.hwnd = hwnd;
    return Extension.FlashWindowEx(flashInfo);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.