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 494931
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T05:32:42+00:00 2026-05-13T05:32:42+00:00

Can someone please point me in the right direction when it comes to changing

  • 0

Can someone please point me in the right direction when it comes to changing properties of an element in Gtk2Hs.

For example, how do I change the background-color of a DrawingArea?

  • 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-13T05:32:43+00:00Added an answer on May 13, 2026 at 5:32 am

    There are various methods for modifying a widget’s style. For example to modify the background style you can use widgetModifyBg (corresponding to the C function gtk_widget_modify_bg()). In principle, if you change the style for one state (e.g. StateNormal) then you should also change it for the others.

    Y would suggest you describe the styles you want in an RC file, and then load that file from your application, but it seems that functions like gtk_rc_parse() are not bound in gtk2hs.

    Here’s an example:

    import Graphics.UI.Gtk
    
    main = do
        initGUI
        window <- windowNew
        window `onDestroy` mainQuit
        drawingArea <- drawingAreaNew
        window `containerAdd` drawingArea
        widgetModifyBg drawingArea StateNormal (Color 0xffff 0 0)
        widgetShowAll window
        mainGUI
    

    If you need to do custom drawing based on a widget’s styles, you can do that using widgetGetState, the widgetStyle property and the styleGet* family of functions (e.g. styleGetText). Here’s an example of that:

    import Graphics.Rendering.Cairo
    import Graphics.UI.Gtk hiding (fill)
    import Graphics.UI.Gtk.Gdk.Events (Event(Expose))
    
    expose widget rect = do
        state <- widgetGetState widget
        style <- widget `get` widgetStyle
        (Color red green blue) <- styleGetText style state
        drawWindow <- widgetGetDrawWindow widget
    
        renderWithDrawable drawWindow $ do
            moveTo 50 50
            setFontSize 20
            setSourceRGB (fromIntegral red / 0xffff)
                         (fromIntegral green / 0xffff)
                         (fromIntegral blue / 0xffff)
            showText "O HAI"
            fill
    
        return False
    
    main = do
        initGUI
        window <- windowNew
        window `onDestroy` mainQuit
        drawingArea <- drawingAreaNew
        drawingArea `onExpose` \(Expose sent area region count) ->
            expose drawingArea area
        window `containerAdd` drawingArea
        widgetShowAll window
        mainGUI
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can someone please point me in the right direction... I need to use the
Can someone please point me in the right direction for the order in which
Can you someone please point in me in a direction, sample code or an
Could someone please point me in the right direction on how to allow the
Really hope someone can point me in the right direction as I have no
Can someone please point me to the easiest way to have a timer in
Can someone please point me to articles or books that discusses different programming paradigm
Can someone please derive a concrete example from the following: http://www.urdalen.com/blog/?p=210 ..that shows how
Can someone guide me in the right direction on how to implement and at
Can someone please let me know how to get the different segments of the

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.