Remove useless Fl_Wayland_Window_Driver::show_with_args_begin/end().

This commit is contained in:
ManoloFLTK 2022-08-15 19:23:57 +02:00
parent 82fa5ea19c
commit d23963af60
2 changed files with 0 additions and 23 deletions

View File

@ -113,8 +113,6 @@ public:
virtual void size_range();
virtual void iconize();
virtual void decoration_sizes(int *top, int *left, int *right, int *bottom);
virtual void show_with_args_begin();
virtual void show_with_args_end(int argc, char **argv);
// --- window cursor stuff
virtual int set_cursor(Fl_Cursor);
virtual int set_cursor(const Fl_RGB_Image*, int, int);

View File

@ -587,27 +587,6 @@ void Fl_Wayland_Window_Driver::decoration_sizes(int *top, int *left, int *right
}
}
void Fl_Wayland_Window_Driver::show_with_args_begin() {
// Get defaults for drag-n-drop and focus...
const char *key = 0;
if (Fl::first_window()) key = Fl::first_window()->xclass();
if (!key) key = "fltk";
}
void Fl_Wayland_Window_Driver::show_with_args_end(int argc, char **argv) {
if (argc) {
// set the command string, used by state-saving window managers:
int j;
int n=0; for (j=0; j<argc; j++) n += strlen(argv[j])+1;
char *buffer = new char[n];
char *p = buffer;
for (j=0; j<argc; j++) for (const char *q = argv[j]; (*p++ = *q++););
delete[] buffer;
}
}
int Fl_Wayland_Window_Driver::scroll(int src_x, int src_y, int src_w, int src_h, int dest_x, int dest_y,
void (*draw_area)(void*, int,int,int,int), void* data)