home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 139 / dpcs0999.iso / Web / CFserver / data1.cab / Java / CFJava.cab / CFJavaRuntime.cab / netscape / application / Window.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-10-01  |  1.5 KB  |  75 lines

  1. package netscape.application;
  2.  
  3. public interface Window extends Target {
  4.    int BLANK_TYPE = 0;
  5.    int TITLE_TYPE = 1;
  6.    String SHOW = "show";
  7.    String HIDE = "hide";
  8.  
  9.    Size contentSize();
  10.  
  11.    void addSubview(View var1);
  12.  
  13.    void show();
  14.  
  15.    void showModally();
  16.  
  17.    void hide();
  18.  
  19.    void moveToFront();
  20.  
  21.    void moveToBack();
  22.  
  23.    boolean isVisible();
  24.  
  25.    void setTitle(String var1);
  26.  
  27.    String title();
  28.  
  29.    void setOwner(WindowOwner var1);
  30.  
  31.    WindowOwner owner();
  32.  
  33.    void setMenuView(MenuView var1);
  34.  
  35.    MenuView menuView();
  36.  
  37.    View viewForMouse(int var1, int var2);
  38.  
  39.    void setBounds(int var1, int var2, int var3, int var4);
  40.  
  41.    void setBounds(Rect var1);
  42.  
  43.    void sizeTo(int var1, int var2);
  44.  
  45.    void sizeBy(int var1, int var2);
  46.  
  47.    void moveBy(int var1, int var2);
  48.  
  49.    void moveTo(int var1, int var2);
  50.  
  51.    void center();
  52.  
  53.    Size windowSizeForContentSize(int var1, int var2);
  54.  
  55.    Rect bounds();
  56.  
  57.    void setMinSize(int var1, int var2);
  58.  
  59.    Size minSize();
  60.  
  61.    void setResizable(boolean var1);
  62.  
  63.    boolean isResizable();
  64.  
  65.    void setContainsDocument(boolean var1);
  66.  
  67.    boolean containsDocument();
  68.  
  69.    void didBecomeCurrentDocument();
  70.  
  71.    void didResignCurrentDocument();
  72.  
  73.    boolean isCurrentDocument();
  74. }
  75.