Internet Explorer Pager Control
Environment: VC6
Hi, I was 14 years old when I wrote this control (almost when it came up to IE5.5) when I saw it for first time I said to myself: "I will make my own" because:
- I like it
- I haven't been able to find it.
How to Use:
1. Projects->Add to Project->Files->SpawnFrameWnd.h/.cpp;IEPagerCtrl.h/.cpp;MenuSpawn.h/.cpp
2. MainFrm.h changes:
#include "IEPagerCtrl.h" #include "SpawnFrameWnd.h" ---------------------------------------------------- //General message map functions protected: //AFX_MSG(CMainFrame) //add this: afx_msg void OnArrow(); -----------------------------------------------------
- Replace "CFrameWnd" with "CSpawnFrameWnd"
- Replace "CToolBar m_wndToolBar" with "CIEPagerCtrl m_wndToolBar"
3. View->Resource Symbols->New->Name: ID_ARROW -> OK
4. MainFrm.cpp changes:
BEGIN _MESSAGE_MAP(........) ON_COMMAND(ID_ARROW, OnArrow) . . . . .
5. Replace "CFrameWnd" with "CSpawnFrameWnd"(everywhere, try with replace action from the edit menu and replace all)
6. Add message handler to WM_SIZE, and add this code to the message.
Replace the OnSize with that:
void CMainFrame::OnSize(UINT nType, int cx, int cy)
{
if ( nType == SIZE_MINIMIZED )
{
cx1 = cx;cy1 = cy;
}
else
if ( nType == SIZE_RESTORED && cx1 != 0 && cy1 != 0)
{
m_wndToolBar.SetSize(cx1);
}
m_wndToolBar.SetSize(cx);
Invalidate();
CSpawnFrameWnd::OnSize(nType, cx, cy);
}
and then add that before it: "int cx1 = 0,cy1 = 0;" as global variables.
7. Add this source code to the MainFrm.cpp
void CMainFrame::OnArrow()
{
HMENU lMenu;
CPoint pPoint;
lMenu = ::CreatePopupMenu();
if ( lMenu != NULL )
{
BUTTONSINFO butInfo[100];
int nButtons =
m_wndToolBar.GetHiddenButtonsInfo ( butInfo );
for ( int i = 0; i < nButtons; i++ )
{
if ( butInfo[i].nStyle == TBSTYLE_SEP &&
i == 0 ) {}
else
::AppendMenu(lMenu, MF_ENABLED | MF_STRING ,
butInfo[i].nID,
butInfo[i].strToolTip );
}
CMenu *pMenu;
pMenu = pMenu->FromHandle ( lMenu );
CRect rect;
m_wndToolBar.GetToolBarCtrl().GetRect(ID_ARROW , &rect);
m_wndToolBar.ClientToScreen(&rect);
m_wndToolBar.GetToolBarCtrl().PressButton( ID_ARROW );
pMenu->TrackPopupMenu ( TPM_LEFTBUTTON,
rect.left,
rect.bottom,
this,
NULL );
m_wndToolBar.GetToolBarCtrl().PressButton( ID_ARROW,
FALSE );
}
else
TRACE0("ERROR: lMenu = NULL");
}
8. Add this source code to the CMainFrame construction:
cSpawn.LoadToolBarResource( IDR_MAINFRAME );
9. Add the bitmaps IDB_ARROW and IDB_MENUCHK
That's it!!!
Special thanks for the Spawn class - it gives me the ability of settings bitmaps for the Menus!!! I hope you like what I did!
Downloads
Download Demo Project - 59.9 KbDownload Source Code - 10.5 Kb

Comments
it is very good
Posted by lupy on 05/16/2006 09:16pmgood code,thank you
ReplyWhy not use a Rebar, that has the chevron (>>) functionality
Posted by Legacy on 01/21/2002 12:00amOriginally posted by: John Smith
So my question is
Why not use a Rebar, that has the chevron (>>) functionality ?
Why re-invent the wheel ?
By the way (the arrows >>) are called chevrons !!!!
ReplyWhat is this!
Posted by Legacy on 01/18/2002 12:00amOriginally posted by: h.s jang
I can't understand this program..
ReplyGood Job!
Posted by Legacy on 01/17/2002 12:00amOriginally posted by: Brian
Thanks.
Bri
Reply
Another project made of myself .... WindowsManager
Posted by Legacy on 01/17/2002 12:00amOriginally posted by: Svetosav Chakaroff
Hi, i got a Windows Manager, which i made, tell me if there is some interest to post it here in code guru...
ReplyNot a pager
Posted by Legacy on 01/17/2002 12:00amOriginally posted by: Le Ridder Noir
This is not a pager control, it's just a chevron a pager is something else see:
http://www.codeproject.com/miscctrl/controls_pager.asp
Replyum, wtf does this do?
Posted by Legacy on 01/16/2002 12:00amOriginally posted by: uhh
it doesn't do anything.........
downloaded the demo project, it's just an empty MFC shell..
Reply
Was also wondering what was "new" and how it related to IE.
Posted by Legacy on 01/16/2002 12:00amOriginally posted by: Steve
You may want to explain what an "Internet Explorer Pager Control" is and how your program provides the same functionality.
The graphic of your program does not look much different than many other programs. I could not find anything "new" just by looking at it. You may want to point out the >> in the upper right corner of the toolbar works the same as IE. Many programs use the >> in their toolbars, not just IE.
Reply