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

  • SEARCH
  • Home
  • 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 6787793
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T17:24:30+00:00 2026-05-26T17:24:30+00:00

I want to use the same #ifdef approach used by WxWidgets , SDL etc.

  • 0

I want to use the same #ifdef approach used by WxWidgets , SDL etc. The only problem is I don’t know how to use it.

Say I want to make a class that draws a rectangle. I want it to use cairo when on X11 platforms (i.e linux) and GDI on win32 platforms :

class graphics
{
void drawRect(int x, int y, int w, int h)
{
/*if on win32*/
HDC myHdc = ::BeginPaint(myHwnd,&mypstr);
::Rectangle(myHdc,x,y,w,h); 
::EndPaint(myHwnd,&mypstr);

/*if on x11*/
cairo_surface_t* s = cairo_xlib_surface_create(/* args */); 
cairo_t* c = cairo_create(s);
cairo_rectangle(c,x,y,w,h);
// etc. etc.
}
};

How would I use #ifdef or something else to do this?

  • 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-26T17:24:31+00:00Added an answer on May 26, 2026 at 5:24 pm

    If you can, prefer to put platform specific methods into separate translation units. This will allow cleaner & more readable code and easier to develop and maintain. IMHO, the build process should determine which platform specific modules to incorporate.

    For example:
    rectangle.hpp:

    struct Rectangle
    {
      void draw(int upper_left_corner_x, int upper_left_corner_y,
                unsigned int length, unsigned int width);
    }
    

    Now the platform specific files:
    rectangle_wx_widgets.cpp:

    #include "rectangle.hpp"
    void
    Rectangle ::
    draw(int upper_left_corner_x, int upper_left_corner_y,
                unsigned int length, unsigned int width)
    {
    // wxWidgets specific code here.
    }
    

    rectangle_qt.cpp:

    #include "rectangle.hpp"
    void
    Rectangle ::
    draw(int upper_left_corner_x, int upper_left_corner_y,
                unsigned int length, unsigned int width)
    {
    // QT specific code here.
    }
    

    main.cpp:

    #include "rectangl.hpp"
    int main(void)
    {
      Rectangle r;
      r.draw(50, 50, 10, 5);
      return 0;
    }
    

    The above code has no conditional preprocessor directives. The main function draws a rectangle regardless of the platform. The specifics of the platform have been removed from main because they are not important. So, without changing any compiler switches or worrying about which preprocessor identifier is defined, one can see that main unconditionally draws a rectangle.

    To draw using a wxWidgets platform, the build process would use rectangle_wx_widgets.cpp. To draw using QT, the rectangle_qt.cpp file would be used, but not both. As this illustration shows, no code is changed in order to produce code for either platform. One could tailor the build process so the command build wxWidgets would include the proper translation units. Thus passing a parameter to the build process generates the platform specific executable.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to make this div click-able and want to use same href of
i want to use same command for another form in java me. i only
I want to use the same ant script to do a build in either
I want to use the same style in many listviews. And in my style
i have a variable $cartTotal in cart.php page i want to use that same
I want to use regular expression same way as string.Format. I will explain I
i want to use focus function in jquery to return to same area of
I want to be able to use the mapfield in the same manner as
I want use jQuery in my project. I know the javascript_include_tag calls the jQuery
I want to use same database object at Delegate file & Controller File of

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.