Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7513633
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T00:14:34+00:00 2026-05-30T00:14:34+00:00

I have the following application. #include <FWWindow.h> #include <FWApplication.h> int main(int /*argc*/, char */*argv*/[])

  • 0

I have the following application.

#include <FWWindow.h>
#include <FWApplication.h>

int main(int /*argc*/, char */*argv*/[])
{
    FWApplication::Initialize();
    FWWindow *win = new FWWindow(800, 600);
    win->Show();
    FWApplication::Run();
    delete win;
}

When I run it it gets stuck on the XNextEvent() because it blocks until it gets the next event from the XServer. What I would like to know, is based on the code below, why is the XNextEvent not getting the ConfigureNotify or Expose events after I am calling XMapWindow(); I have checked to make sure my application provides the right Display based on the address in the watch window of my IDE. What am I missing to get the window to appear?


Initialize() does the following

–

FWApplication *FWApplication::Initialize()
{
    if (!_instance)
    {
        _xDisplay = XOpenDisplay(NULL);
        if (_xDisplay == NULL)
            throw "Failed to get XDisplay";
        _initialized = true;
        _instance = new FWApplication(); // Calls an empty ctor
    }
    return _instance;
}

FWWindow *win = new FWWindow(800, 600); does the following

–

FWWindow::FWWindow(int width, int height) :
        clientWidth(width),
        clientHeight(height)
{
    // These are all member variables
    xDisplay = FWApplication::GetMainDisplay();
    xScreen = DefaultScreen(xDisplay);
    xDepth  = DefaultDepth(xDisplay, xScreen);
    xVisual = DefaultVisual(xDisplay,xScreen);
    xAttributes.background_pixel = XWhitePixel(xDisplay, xScreen);
    xAttributes.border_pixel = XBlackPixel(xDisplay, xScreen);
    xAttributes.override_redirect = 0;
    xWindow = XCreateWindow(
                             xDisplay,
                             RootWindow(xDisplay, xScreen),
                             0, 0,
                             width, height,
                             0,
                             xDepth,
                             InputOutput,
                             xVisual,
                             CWBorderPixel | CWColormap | CWEventMask,
                             &xAttributes
                           );

      XSetStandardProperties(
                             xDisplay,
                             xWindow,
                             "glxsimple",
                             "glxsimple",
                             None,
                             NULL,
                             0,
                             NULL
                            );
}

win->Show(); does the following

–

void FWWindow::Show()
{                                   
    XMapWindow(xDisplay, xWindow); // xWindow and xDisplay defined in ctor above
}

And finaly FWApplication::Run(); does the following

–

int FWApplication::Run()
{
    if (!_initialized)
        return -1;
    static bool run = true;
    static Display *lDisplay = _xDisplay;
    XEvent xEvent;
    while (run)
    {
        do
        {
            XNextEvent(lDisplay, &xEvent);
            switch (xEvent.type)
            {
            case ConfigureNotify:
                {
                    unsigned int w = xEvent.xconfigure.width;
                    unsigned int h = xEvent.xconfigure.height;
                    // Do something to main widget
                }
            case Expose:
                break;
            }
        } while (XPending(GetMainDisplay()));
    }
    return EXIT_SUCCESS;
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T00:14:36+00:00Added an answer on May 30, 2026 at 12:14 am

    You’re not specifying an event mask in your window’s attributes, so XNextEvent() won’t report any event. You should write something like:

    xAttributes.background_pixel = XWhitePixel(xDisplay, xScreen);
    xAttributes.border_pixel = XBlackPixel(xDisplay, xScreen);
    xAttributes.override_redirect = 0;
    xAttributes.event_mask = StructureNotifyMask  // for ConfigureNotify
                           | ExposureMask;        // for Expose
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following test application: #include <stdlib.h> #include <string.h> #include <stdio.h> int main(void){
i have following code in visual c++ #include<Windows.h> LPCTSTR Caption=LApplication programming INTERFACE; INT WINAPI
I have an application which uses a main story board to include a Navigation
I have the following code: main.cpp #include <iostream> #include <string> using namespace std; string
I have the following Application tag code in my widget: <mx:Application xmlns:mx=http://www.adobe.com/2006/mxml xmlns:local=* width=100%
I have the following application: I have 1 window. On that window I add
Lets say that you have a following simple application: <form action=helloServlet method=post> Give name:<input
I have following code in my application: // to set tip - photo in
I have following requirement in my application. A tableView with games title After selecting
I have following code in my Application. Comments in my code will specify My

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.