FLTK logo

STR #1737

FLTK matrix user chat room
(using Element browser app)   FLTK gitter user chat room   GitHub FLTK Project   FLTK News RSS Feed  
  FLTK Apps      FLTK Library      Forums      Links     Login 
 Home  |  Articles & FAQs  |  Bugs & Features  |  Documentation  |  Download  |  Screenshots  ]
 

Return to Bugs & Features | Roadmap 2.0 | Post Text | Post File | SVN ⇄ GIT ]

STR #1737

Application:FLTK Library
Status:5 - New
Priority:2 - Low, e.g. a documentation error or undocumented side-effect
Scope:2 - Specific to an operating system
Subsystem:Unassigned
Summary:window->resizable(window) does not make all contents resize
Version:2.0-current
Created By:Doodle77
Assigned To:Unassigned
Fix Version:Unassigned
Update Notification:

Receive EMails Don't Receive EMails

Trouble Report Files:

Post File ]

No files


Trouble Report Comments:

Post Text ]
Name/Time/Date Text  
 
#1 Doodle77
19:56 Jul 15, 2007
I only noticed this because I was trying to make an empty window resizable, but in the following program, the window is not resizable (at least on win32). The documentation should mention this if it's intentional.

//Generic tiny fltk program
#include <fltk/Window.h>
#include <fltk/run.h>
using namespace fltk;
int main(int argc, char** argv) {
  Window* w = new Window(100,100);
  w->resizable(w);
  w->show(1,argv);
  return run();
}
 
     

Return to Bugs & Features | Post Text | Post File ]

 
 

Comments are owned by the poster. All other content is copyright 1998-2024 by Bill Spitzak and others. This project is hosted by The FLTK Team. Please report site problems to 'erco@seriss.com'.