Invalidate() Error CDialog
-
ok so you trying to say when i am trying to call anymethod from outside of tab_one class i will have to recreate the tabs? or i call method create inside the tab_one. I have mytabcontrol which controls all tabs and tab_one which draw something inside each tab(dialog box) could you please try to reply me practically maybe in code would help.. thanks a lot.
I assume you have something like the following: 1. A form view or dialog that contains your tab control, say FormDlg. 2. A tab control class, either a CTabCtrl or a class derived from that. 3. This tab control contains a few tabs, where each should display a child dialog of type tab_one or derived from tab_one. First, you either add a tab control in the resource editor and hook it up to a member variable of your FormDlg class, m_tabs. Or you create a tab control dynamically in FormDlg using CTabCtrl::Create(). Now every time you insert a new tab using CTabCtrl::InsetItem(), you also create a child dialog of type tab_one, using tab_one::Create(). You can also chose to create all these child dialogs when the tab control is first created, if the control has a fixed set of tabs. Make sure you position the child dialog relative your tab controls client area. It's a bit tricky, since the client area also includes the actual tabs at the top (stupid design I know) but you can get the hight if the tabs and adjust your display rectangle. If the tab control is self contained, you keep those dialogs as members of your tab control derived class, otherwise they can be members of your FormDlg. Now, displaying the proper child dialog is just a matter of responding the the TCN_SELCHANGE message and call tab_one::ShowWindow(SW_SHOW) for the activated tab, and ShowWindow(SW_HIDE) for the others.
-
I assume you have something like the following: 1. A form view or dialog that contains your tab control, say FormDlg. 2. A tab control class, either a CTabCtrl or a class derived from that. 3. This tab control contains a few tabs, where each should display a child dialog of type tab_one or derived from tab_one. First, you either add a tab control in the resource editor and hook it up to a member variable of your FormDlg class, m_tabs. Or you create a tab control dynamically in FormDlg using CTabCtrl::Create(). Now every time you insert a new tab using CTabCtrl::InsetItem(), you also create a child dialog of type tab_one, using tab_one::Create(). You can also chose to create all these child dialogs when the tab control is first created, if the control has a fixed set of tabs. Make sure you position the child dialog relative your tab controls client area. It's a bit tricky, since the client area also includes the actual tabs at the top (stupid design I know) but you can get the hight if the tabs and adjust your display rectangle. If the tab control is self contained, you keep those dialogs as members of your tab control derived class, otherwise they can be members of your FormDlg. Now, displaying the proper child dialog is just a matter of responding the the TCN_SELCHANGE message and call tab_one::ShowWindow(SW_SHOW) for the activated tab, and ShowWindow(SW_HIDE) for the others.
Hey, thx for your reply:D ok let me explain what i have done brifley, I Have 3 classes. First one is gphview which is formview based class which contains mytabctrl and on half window it contains some function of calculater(adding,multiply,subtract) Second one is mytabcontrol which holds 9 different tabs and create dialog for each tab Lastone is tab_one class which is dialog based class which draws the graphs according to tab selected. In first gphView class : void GphView::OnInitialUpdate( void) { CFormView::OnInitialUpdate(); GetParentFrame()->RecalcLayout(); ResizeParentToFit(); m_tabMyTabCtrl.InsertItem(0, _T("Graph1")); m_tabMyTabCtrl.InsertItem(1, _T("Graph1")); m_tabMyTabCtrl.InsertItem(2, _T("Graph1")); m_tabMyTabCtrl.InsertItem(3, _T("Graph1")); m_tabMyTabCtrl.InsertItem(4, _T("Graph1")); m_tabMyTabCtrl.InsertItem(5, _T("Graph1")); m_tabMyTabCtrl.InsertItem(6, _T("Graph1")); m_tabMyTabCtrl.InsertItem(7, _T("Graph1(occupied)")); m_tabMyTabCtrl.Init(); } In mytabctrl class: CMyTabCtrl::CMyTabCtrl() { pTab = new CTab_one(this); // instance of tab_one class declared in header file CTab_one *pTab; } CMyTabCtrl::~CMyTabCtrl() { } void CMyTabCtrl::Init() { m_tabPages[0]=new CTab_one; // m_tabpages declared in header like this CDialog *m_tabPages[8]; m_tabPages[1]=new CTab_one; m_tabPages[2]=new CTab_one; m_tabPages[3]=new CTab_one; m_tabPages[4]=new CTab_one; m_tabPages[5]=new CTab_one; m_tabPages[6]=new CTab_one; m_tabPages[7]=new CTab_one; m_nNumberOfPages=8; m_tabCurrent=0; m_tabPages[0]->Create(IDD_TAB_ONE,this); m_tabPages[0]->ShowWindow(SW_SHOW); m_tabPages[1]->Create(IDD_TAB_ONE,this); m_tabPages[1]->ShowWindow(SW_HIDE); m_tabPages[2]->Create(IDD_TAB_ONE, this); m_tabPages[2]->ShowWindow(SW_HIDE); m_tabPages[3]->Create(IDD_TAB_ONE, this); m_tabPages[3]->ShowWindow(SW_HIDE); m_tabPages[4]->Create(IDD_TAB_ONE, this); m_tabPages[4]->ShowWindow(SW_HIDE); m_tabPages[5]->Create(IDD_TAB_ONE, this); m_tabPages[5]->ShowWindow(SW_HIDE); m_tabPages[6]->Create(IDD_TAB_ONE, this); m_tabPages[6]->ShowWindow(SW_HIDE); m_tabPages[7]->Create(IDD_TAB_ONE, this); m_tabPages[7]->ShowWindow(SW_HIDE); SetRectangle(); } void CMyTabCtrl::SetRectangle() { CRect tabRect, itemRect; int nX, nY, nXc, nYc; GetClientRect(&tabRect); GetItemRect(0, &itemRect); nX=itemRect.left; nY=itemRect
-
you are mixing something that is buggy. Use some pointers to the approbiate objects. Press F1 for help or google it. Greetings from Germany
-
we have a saying: "Help yourself and so god will help you". you got to do your homeworks yourself Press F1 for help or google it. Greetings from Germany
haha. I think that saying "" does WORK.. I was trying this since last week and finally today i solved it. GOD HELPED ME....It wasn't that easy though. But this is not the end yet..got some more problems to solve. Let the GOD help me for all of them :D:D
-
Hey, thx for your reply:D ok let me explain what i have done brifley, I Have 3 classes. First one is gphview which is formview based class which contains mytabctrl and on half window it contains some function of calculater(adding,multiply,subtract) Second one is mytabcontrol which holds 9 different tabs and create dialog for each tab Lastone is tab_one class which is dialog based class which draws the graphs according to tab selected. In first gphView class : void GphView::OnInitialUpdate( void) { CFormView::OnInitialUpdate(); GetParentFrame()->RecalcLayout(); ResizeParentToFit(); m_tabMyTabCtrl.InsertItem(0, _T("Graph1")); m_tabMyTabCtrl.InsertItem(1, _T("Graph1")); m_tabMyTabCtrl.InsertItem(2, _T("Graph1")); m_tabMyTabCtrl.InsertItem(3, _T("Graph1")); m_tabMyTabCtrl.InsertItem(4, _T("Graph1")); m_tabMyTabCtrl.InsertItem(5, _T("Graph1")); m_tabMyTabCtrl.InsertItem(6, _T("Graph1")); m_tabMyTabCtrl.InsertItem(7, _T("Graph1(occupied)")); m_tabMyTabCtrl.Init(); } In mytabctrl class: CMyTabCtrl::CMyTabCtrl() { pTab = new CTab_one(this); // instance of tab_one class declared in header file CTab_one *pTab; } CMyTabCtrl::~CMyTabCtrl() { } void CMyTabCtrl::Init() { m_tabPages[0]=new CTab_one; // m_tabpages declared in header like this CDialog *m_tabPages[8]; m_tabPages[1]=new CTab_one; m_tabPages[2]=new CTab_one; m_tabPages[3]=new CTab_one; m_tabPages[4]=new CTab_one; m_tabPages[5]=new CTab_one; m_tabPages[6]=new CTab_one; m_tabPages[7]=new CTab_one; m_nNumberOfPages=8; m_tabCurrent=0; m_tabPages[0]->Create(IDD_TAB_ONE,this); m_tabPages[0]->ShowWindow(SW_SHOW); m_tabPages[1]->Create(IDD_TAB_ONE,this); m_tabPages[1]->ShowWindow(SW_HIDE); m_tabPages[2]->Create(IDD_TAB_ONE, this); m_tabPages[2]->ShowWindow(SW_HIDE); m_tabPages[3]->Create(IDD_TAB_ONE, this); m_tabPages[3]->ShowWindow(SW_HIDE); m_tabPages[4]->Create(IDD_TAB_ONE, this); m_tabPages[4]->ShowWindow(SW_HIDE); m_tabPages[5]->Create(IDD_TAB_ONE, this); m_tabPages[5]->ShowWindow(SW_HIDE); m_tabPages[6]->Create(IDD_TAB_ONE, this); m_tabPages[6]->ShowWindow(SW_HIDE); m_tabPages[7]->Create(IDD_TAB_ONE, this); m_tabPages[7]->ShowWindow(SW_HIDE); SetRectangle(); } void CMyTabCtrl::SetRectangle() { CRect tabRect, itemRect; int nX, nY, nXc, nYc; GetClientRect(&tabRect); GetItemRect(0, &itemRect); nX=itemRect.left; nY=itemRect
Please use the
code block
button when pasting code. It will make it readable. The code is roughly what I suggested. But I don't understand whatpTab = new CTab_one(this);
is doing i the contructor? What do you need that page for? And also it has to be deleted in the destructor. I suggest you declare it as
CTab_one m_tab;
in the class declaration instead. Also, there is a message for when the active tab is changed as per my last message. Relying on WM_LBUTTONDOWN is not enough, since one can navigate using keyboard. Was there a question in your last post? :) -
Please use the
code block
button when pasting code. It will make it readable. The code is roughly what I suggested. But I don't understand whatpTab = new CTab_one(this);
is doing i the contructor? What do you need that page for? And also it has to be deleted in the destructor. I suggest you declare it as
CTab_one m_tab;
in the class declaration instead. Also, there is a message for when the active tab is changed as per my last message. Relying on WM_LBUTTONDOWN is not enough, since one can navigate using keyboard. Was there a question in your last post? :)Hey, Thx a lot for your replies. I have already solved my problem for redrawing graph it was just small stupid pointer mistake i wasn't passing correct value and yeah thx for TCN_SELCHANGE message i was wondering about it but didn't have time to look at it. I will have to google how that works. Could you let me know how that works like what method it will call. and wat's exact message for that. Thx again, cheers from CANADA
-
Hey, Thx a lot for your replies. I have already solved my problem for redrawing graph it was just small stupid pointer mistake i wasn't passing correct value and yeah thx for TCN_SELCHANGE message i was wondering about it but didn't have time to look at it. I will have to google how that works. Could you let me know how that works like what method it will call. and wat's exact message for that. Thx again, cheers from CANADA
-
-
Is there anyway i can resize my tabcontrol. like i wana have some feature like when you double click graph inside tab it will resize to mainwindow and when you double click again it will be back as normal window. I had couple of thoughts like creating frame for tabcontrol and another for rest of the form and then just deal with frame but didn't work. thx
-
Is there anyway i can resize my tabcontrol. like i wana have some feature like when you double click graph inside tab it will resize to mainwindow and when you double click again it will be back as normal window. I had couple of thoughts like creating frame for tabcontrol and another for rest of the form and then just deal with frame but didn't work. thx
-
Well, you could just resize it using SetWindowPos(), and then temporarily change the parent window to your CMainFrame I suppose. Another way might be to mimic the behavior of print preview, but without the printing so to speak.
Yet problem's not solved :confused:. Now you know I have two main class. calculator and tab_one(graphs). now calculator is formview and tab_one is dialog box. now everytime i change something in calculator i will need to redraw graphs in dialog box so i will call invalidate but dialog box will need to get new values from calculator, so i created instance of calculator in tab_one but everytime i call invalidate it creates new calculator and all values goes to default value thus not able to get new values. any clue ?
-
Yet problem's not solved :confused:. Now you know I have two main class. calculator and tab_one(graphs). now calculator is formview and tab_one is dialog box. now everytime i change something in calculator i will need to redraw graphs in dialog box so i will call invalidate but dialog box will need to get new values from calculator, so i created instance of calculator in tab_one but everytime i call invalidate it creates new calculator and all values goes to default value thus not able to get new values. any clue ?
Can't you just set a pointer to your main calculator in your tab_one dialog? Then you can read up-to-date data from the calculator when repainting your dialog. A better way would be to have a data object, containing all current information in your calculator. This should be owned by the calculator. Then set a pointer to this in your tab_one. Did that make sense?
-
Can't you just set a pointer to your main calculator in your tab_one dialog? Then you can read up-to-date data from the calculator when repainting your dialog. A better way would be to have a data object, containing all current information in your calculator. This should be owned by the calculator. Then set a pointer to this in your tab_one. Did that make sense?
i don't know if that makes sense or not but somehow i managed to solve that problem. What I did is. mytabcontrol was inside of calculator so whenever i changed something i inform that to mytabcontrol ( i have valid m_hWnd since it's inside calculator ) now all tabs are initialized inside tab control so they wont have problem getting m_hWnd for tabone so if they get called they will inform tab_one to redraw it(invalidate) now problems was if i calls tab_one from tabcontrol , then tab_one will be reinitialzed which will read defaults values of calculaotr so graph will be same. now i have calcparam which holds all values of calculator inside(calculator) and tab_one was reading those value. but now i created another calcparam inside tab_one and made sure tab_one read that calcparam not the one from calculator and if i change something in calculator. it does this memcpy( &m_tabMyTabCtrl.m_tabPages[i]->CalcParam,&CalcParam,sizeof(CALC_PARAMS)); m_tabMyTabCtrl.m_tabPages[i]->Invalidate( ); // m_tabmytabcontrol is instance of mytabcontrol inside gphview and tabpages is instance of tabone defined in mytabcontrol that's how i got it work. anyways thx a lot, cheers from canada.
-
i don't know if that makes sense or not but somehow i managed to solve that problem. What I did is. mytabcontrol was inside of calculator so whenever i changed something i inform that to mytabcontrol ( i have valid m_hWnd since it's inside calculator ) now all tabs are initialized inside tab control so they wont have problem getting m_hWnd for tabone so if they get called they will inform tab_one to redraw it(invalidate) now problems was if i calls tab_one from tabcontrol , then tab_one will be reinitialzed which will read defaults values of calculaotr so graph will be same. now i have calcparam which holds all values of calculator inside(calculator) and tab_one was reading those value. but now i created another calcparam inside tab_one and made sure tab_one read that calcparam not the one from calculator and if i change something in calculator. it does this memcpy( &m_tabMyTabCtrl.m_tabPages[i]->CalcParam,&CalcParam,sizeof(CALC_PARAMS)); m_tabMyTabCtrl.m_tabPages[i]->Invalidate( ); // m_tabmytabcontrol is instance of mytabcontrol inside gphview and tabpages is instance of tabone defined in mytabcontrol that's how i got it work. anyways thx a lot, cheers from canada.