Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. forcing repaint after CDC::TextOut function

forcing repaint after CDC::TextOut function

Scheduled Pinned Locked Moved C / C++ / MFC
graphicshelptutorialquestion
22 Posts 8 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • G goodoljosh1980

    Yeah, it compiles... That is how I set the color of the text I want. The Welcome_font is a member variable of the main dialog and is created in the BOOL CMartinPhDDlg::OnInitDialog() { CDialog::OnInitDialog(); GetWindowRect(m_rect); //Hide all diagrams to begin with top_diagram.ShowWindow(0); Intro_Stylus_Diagram.ShowWindow(0); Welcome_font.CreateFont(90, 0, 0, 0, FW_NORMAL, FALSE, FALSE, FALSE, ANSI_CHARSET, OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS, DEFAULT_QUALITY, DEFAULT_PITCH | FF_DECORATIVE, "Times New Roman");

    A Offline
    A Offline
    Ali Rafiee
    wrote on last edited by
    #13

    are you calling Invalidate() UpdateWindow() after you set the boolean? By the way, don't delete the font object in the OnPaint method if it is not being recreated there. You are creating the font object once in your OnInitDialog but then deleting it everytime OnPaint runs.

    G 2 Replies Last reply
    0
    • A Ali Rafiee

      are you calling Invalidate() UpdateWindow() after you set the boolean? By the way, don't delete the font object in the OnPaint method if it is not being recreated there. You are creating the font object once in your OnInitDialog but then deleting it everytime OnPaint runs.

      G Offline
      G Offline
      goodoljosh1980
      wrote on last edited by
      #14

      I was calling Invalidate() in the OnPaint... Once I moved it...the text showed up and it doesn't get erased!!! THANKS TO EVERYONE!

      S 1 Reply Last reply
      0
      • G goodoljosh1980

        I was calling Invalidate() in the OnPaint... Once I moved it...the text showed up and it doesn't get erased!!! THANKS TO EVERYONE!

        S Offline
        S Offline
        Steve S
        wrote on last edited by
        #15

        That's because OnPaint is eventually called as a result of Invalidate(). By putting an invalidate in there, you said "I've drawn (it's valid)", swiftly followed by "it's invalid again". :) Steve S Developer for hire

        G 1 Reply Last reply
        0
        • S Steve S

          That's because OnPaint is eventually called as a result of Invalidate(). By putting an invalidate in there, you said "I've drawn (it's valid)", swiftly followed by "it's invalid again". :) Steve S Developer for hire

          G Offline
          G Offline
          goodoljosh1980
          wrote on last edited by
          #16

          If that were true, couldn't I just put an Invalidate() in the program when I wanted it to repaint itself? That is, I call my TextOut functions...then tell it to Invalidate() (which eventually calls OnPaint())????

          A 1 Reply Last reply
          0
          • A Ali Rafiee

            are you calling Invalidate() UpdateWindow() after you set the boolean? By the way, don't delete the font object in the OnPaint method if it is not being recreated there. You are creating the font object once in your OnInitDialog but then deleting it everytime OnPaint runs.

            G Offline
            G Offline
            goodoljosh1980
            wrote on last edited by
            #17

            Thank you for the help. I do have an additional question, now though. I have a number of screens (100s of them) that I am going to be drawing line by line. Instead of having my OnPaint with all those boolean checks, can I call a function with CPaintDC as a member to draw them "outside" of the OnPaint()? Thanks again. Josh

            A 1 Reply Last reply
            0
            • G goodoljosh1980

              what do you mean by this? I have tried... PostMessage(WMPAINT,0,0), but that didn't work either.

              R Offline
              R Offline
              Ravi Bhavnani
              wrote on last edited by
              #18

              Move your drawing logic to the handler for the WM_PAINT message. Windows will send this message to your dialog when necessary. To force a repaint (uncommon), call Invalidate(). /ravi My new year's resolution: 2048 x 1536 Home | Music | Articles | Freeware | Trips ravib(at)ravib(dot)com

              1 Reply Last reply
              0
              • G goodoljosh1980

                Thank you for the help. I do have an additional question, now though. I have a number of screens (100s of them) that I am going to be drawing line by line. Instead of having my OnPaint with all those boolean checks, can I call a function with CPaintDC as a member to draw them "outside" of the OnPaint()? Thanks again. Josh

                A Offline
                A Offline
                Ali Rafiee
                wrote on last edited by
                #19

                Yes you can. Pass the dc as a parameter to the method. AliR. Visual C++ MVP

                1 Reply Last reply
                0
                • G goodoljosh1980

                  OK, Here is what I have tried now.... When the user clicks the button to trigger the drawing of text, I set a boolean value to true (RegKeyAvail). And I also implemented this... void CMartinPhDDlg::OnPaint() { CPaintDC dc(this); // device context for painting if(RegKeyAvail){ dc.SelectObject(&Welcome_font); dc.SetBkMode(TRANSPARENT); dc.SetTextColor(COLORREF RGB(255,0,0)); dc.TextOut(30,30, "WELCOME"); Welcome_font.DeleteObject(); } if (IsIconic()) {.... However, now the text isn't showing up at all. I know that the OnPaint is being called because I have set breakpoints in there and the functions walks through the dc.TextOut call, but does nothing......

                  D Offline
                  D Offline
                  David Crow
                  wrote on last edited by
                  #20

                  goodoljosh1980 wrote:

                  if(RegKeyAvail){

                  This check is actually not necessary. Much like the view renders whatever the document has in it, the OnPaint() handler should draw whatever value is in a member variable. If that value starts out as blank, so be it.

                  void CMartinPhDDlg::OnPaint()
                  {
                  CPaintDC dc(this); // device context for painting
                  dc.SelectObject(&Welcome_font);
                  dc.SetBkMode(TRANSPARENT);
                  dc.SetTextColor(COLORREF RGB(255,0,0));
                  dc.TextOut(30,30, m_strText); // m_strText is set in various other methods

                  // don't call DeleteObject() on a font that is currently selected into a DC 
                  Welcome\_font.DeleteObject();
                  

                  }


                  "Money talks. When my money starts to talk, I get a bill to shut it up." - Frank

                  "Judge not by the eye but by the heart." - Native American Proverb

                  1 Reply Last reply
                  0
                  • G goodoljosh1980

                    If that were true, couldn't I just put an Invalidate() in the program when I wanted it to repaint itself? That is, I call my TextOut functions...then tell it to Invalidate() (which eventually calls OnPaint())????

                    A Offline
                    A Offline
                    Ali Rafiee
                    wrote on last edited by
                    #21

                    Invalidate is a function that cause the window to redraw itself. But all it does is call the OnPaint method, which didn't know anything about your drawings on the dc. Everytime OnPaint gets called, it gets a clean dc to draw on, OnEraseBkgnd makes sure of that, and your TextOut stuff would be gone with it. That's why everyone told you that your text drawing need to be called from within the OnPaint method. AliR. Visual C++ MVP

                    1 Reply Last reply
                    0
                    • G goodoljosh1980

                      what do you mean by this? I have tried... PostMessage(WMPAINT,0,0), but that didn't work either.

                      H Offline
                      H Offline
                      Hamid Taebi
                      wrote on last edited by
                      #22

                      No You can declare WM_PAINT in your program and insert your functions to it(use form dc)_**


                      **_

                      whitesky


                      1 Reply Last reply
                      0
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      • Login

                      • Don't have an account? Register

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • World
                      • Users
                      • Groups