Click here to Skip to main content
15,881,938 members
Articles / Desktop Programming / MFC
Article

Hyperlink Scroller

Rate me:
Please Sign up or sign in to vote.
4.82/5 (15 votes)
21 Nov 20022 min read 277K   3.9K   42   35
An article on scrolling your hyperlinks, something like a news ticker

Sample Image

Introduction

This article is about a subclassed static control which you can use to scroll hyperlinks from right to left. I once used it to scroll news headlines as hyperlinks in an application.

Using the code

The source for this subclassed control is in ScrollLink.h and ScrollLink.cpp. In it, you will find 2 classes, CScrollLink and CTextFrame. The latter is used by CScrollLink for each hyperlink to scroll, so you don't really need to know much about it to use this hyperlink scroller. To use it, you need to use a Static control and subclassed with CScrollLink. Note that you need to check the 'Notify' property of the static control.

The code listed below will show you how to 

  1. Change the scrolling text colors, fonts, scroll speed, rate, etc.
  2. Change the font attributes such as bold hyperlinks, underline them when hovered.
  3. Add hyperlink name and its url for scrolling.
  4. Remove all the hyperlinks that were added.
  5. Begin scrolling all the added hyperlinks.

1) Change the scrolling text colors, fonts, scroll speed, rate, etc.

#define CLR_RED RGB(255, 0, 0) // Red color
#define CLR_BLUE RGB(0, 0, 255) // Blue color
#define CLR_BLACK RGB(0, 0, 0) // Black color
#define CLR_GRAY RGB(178, 178, 178) // Gray color
#define CLR_WHITE RGB(255, 255, 255) // White color

#define SCROLLRATE 1 // Frequency of timer
#define SCROLLSPEED 1 // Amount of pixels to scroll
#define SCROLLALLOWANCE 50 // Amount of pixels between 2 scroll text
CScrollLink::CScrollLink()
{
    // Empty array
    m_oTextFrames.RemoveAll();
    m_iTextFramesScrolling.RemoveAll();

    // Scroll rate is the value used in SetTimer(), which scrolls your hyperlinks to
    // the left by x pixels, where x is the scroll speed value. Scroll allowance is the
    // gap in pixels between 2 scrolling hyperlinks
    m_uiScrollRate = SCROLLRATE;
    m_uiScrollSpeed = SCROLLSPEED;
    m_uiScrollAllowance = SCROLLALLOWANCE;

    // The text of the hyperlink will be black if there is no url for it. If not, it will
    // be blue. The color of the hyperlink is set to red when mouse it is hovered and the
    // background color of the control is set to the same as the button color.
    m_clrText = CLR_BLACK;
    m_clrHover = CLR_RED;
    m_clrBackground = GetSysColor(COLOR_BTNFACE);

    // Set flag
    m_bOnHover = FALSE;
}

2) Change the font attributes such as bold hyperlinks, underline them when hovered.

This hyperlink scroller uses the same font as its parent. You can change its font attributes for the scrolling text as well as when it is hovered in CreateTextFonts as show below.

void CScrollLink::CreateTextFonts(void)
{
    // Get window font
    CFont* pFont = GetFont();
    
    // Create LOGFONT structure
    LOGFONT lfLogFont;

    // Get LOGFONT structure of current font
    pFont->GetLogFont(&lfLogFont);

    // Set font to be bold
    lfLogFont.lfWeight = FW_BOLD;

    // Create normal font that is bold (when not hovered)
    m_oNormalFont.CreateFontIndirect(&lfLogFont);
    
    // Set underline attribute
    lfLogFont.lfUnderline = TRUE;

    // Create current font with underline attribute (when hovered)
    m_oUnderlinedFont.CreateFontIndirect(&lfLogFont);
}

3) Add hyperlink name and its url for scrolling.

Now to add your hyperlink to the scroller, you should use AddScrollText as shown below. Note that you can pass an empty url string and the scrolled text will appear as a normal text instead of a hyperlink.

BOOL CScrollLink::AddScrollText(CString strText /* Text to scroll */, 
                                CString strURL /* URL behind scrolled text */)
{
    // Allocate memory for CTextFrame object
    CTextFrame* pTextFrame = new CTextFrame(strText, strURL);

    // Check if memory allocation successful
    if (pTextFrame != NULL)
    {
        // Store object into array
        m_oTextFrames.Add(pTextFrame);

        // Assign null pointer value
        pTextFrame = NULL;

        // Indicate success
        return TRUE;
    }

    // Indicate failure
    return FALSE;
}

4) Remove all the hyperlinks that were added.

And to clear all the hyperlinks that you have added, call RemoveAllScrollText.

BOOL CScrollLink::RemoveAllScrollText(void)
{
    // Remove all scroll text
    DeleteTextFrames();

    // Repaint
    Invalidate();

    // Indicate success
    return TRUE;
}

5) Begin scrolling all the added hyperlinks.

After you have added your hyperlinks details, call StartScrolling to begin scrolling them.

/* bRestart = Flag to indicate whether to restart scrolling */
BOOL CScrollLink::StartScrolling(BOOL bRestart)
{
    // Make sure there are text to scroll
    if (m_oTextFrames.GetSize() > 0)
    {
        // Stop timer if any
        KillTimer(ID_SCROLLTIMER);

        // Check if scrolling is to be restarted
        if (bRestart == TRUE)
        {
            // Empty array of indexes of current scrolling text frames
            m_iTextFramesScrolling.RemoveAll();

            // Store index of the first text frame to be scrolling
            m_iTextFramesScrolling.Add(0);

            // Initialize size of text and its starting position
            PrepareTextFramesForScrolling();

            // Clear any previous scroll text
            Invalidate();
        }

        // Scrolling is to be continued
        else
        {}

        // Start timer
        SetTimer(ID_SCROLLTIMER, SCROLLRATE, NULL);

        // Indicate success
        return TRUE;
    }

    // Indicate failure
    return FALSE;
}

Points of Interest

Well, I need to apologize if my code comments appear vague. I am still improving on that. Also, I know that some of my code could be further improved, so I will be open to your comments, suggestions and criticisms.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Singapore Singapore
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMutiThread problems Pin
shirley_cl15-Jul-09 17:00
shirley_cl15-Jul-09 17:00 
GeneralLittle question about using this control in ATL project Pin
mfranco_neto5-Oct-06 5:46
mfranco_neto5-Oct-06 5:46 
Questiona little suggestion or improvement? Pin
ice_lei18-Sep-06 22:55
ice_lei18-Sep-06 22:55 
QuestionHow to display not fliking Pin
pyoon17-Apr-06 3:31
pyoon17-Apr-06 3:31 
QuestionHow to change the SCROLLRATE and SCROLLSPEED Pin
chinakknd26-Mar-06 21:15
chinakknd26-Mar-06 21:15 
AnswerRe: How to change the SCROLLRATE and SCROLLSPEED Pin
Weiye Chen27-Mar-06 1:57
Weiye Chen27-Mar-06 1:57 
QuestionCan I creat the control with 'creat' method Pin
chgrbr31-Oct-05 20:37
chgrbr31-Oct-05 20:37 
AnswerRe: Can I creat the control with 'creat' method Pin
Weiye Chen8-Nov-05 21:18
Weiye Chen8-Nov-05 21:18 
Generaltransparent text and halts Pin
sir kaber28-Jul-05 13:25
sir kaber28-Jul-05 13:25 
Questionright to left scroll ? Pin
waelahmed5-Sep-04 16:44
waelahmed5-Sep-04 16:44 
AnswerRe: right to left scroll ? Pin
Weiye Chen6-Sep-04 0:59
Weiye Chen6-Sep-04 0:59 
GeneralRe: right to left scroll ? Pin
waelahmed11-Sep-04 17:07
waelahmed11-Sep-04 17:07 
GeneralRe: right to left scroll ? Pin
Weiye Chen11-Sep-04 17:55
Weiye Chen11-Sep-04 17:55 
GeneralRe: right to left scroll ? Pin
waelahmed11-Sep-04 17:57
waelahmed11-Sep-04 17:57 
GeneralRe: Hi, I have two question! Pin
Weiye Chen23-Jun-04 21:05
Weiye Chen23-Jun-04 21:05 
GeneralRe: Image Background Pin
Weiye Chen15-Jun-04 20:03
Weiye Chen15-Jun-04 20:03 
GeneralTransparent background Pin
speedpacer8-Nov-03 4:55
speedpacer8-Nov-03 4:55 
GeneralRe: Transparent background Pin
speedpacer8-Nov-03 5:29
speedpacer8-Nov-03 5:29 
GeneralRe: Transparent background Pin
Weiye Chen9-Nov-03 4:22
Weiye Chen9-Nov-03 4:22 
GeneralBigger Font Pin
Rizi29-Sep-03 19:57
Rizi29-Sep-03 19:57 
GeneralRe: Bigger Font Pin
Weiye Chen30-Sep-03 2:14
Weiye Chen30-Sep-03 2:14 
GeneralObject ID problem Pin
gigi boieru28-Jul-03 22:30
gigi boieru28-Jul-03 22:30 
GeneralRe: Object ID problem Pin
Weiye Chen29-Jul-03 18:02
Weiye Chen29-Jul-03 18:02 
GeneralRe: Object ID problem Pin
gigi boieru31-Jul-03 4:38
gigi boieru31-Jul-03 4:38 
GeneralUhm Pin
Daniel 'Tak' M.23-Nov-02 10:25
Daniel 'Tak' M.23-Nov-02 10:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.