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

Be Sweet - a set of visual source code browsers

Rate me:
Please Sign up or sign in to vote.
4.85/5 (35 votes)
1 Jul 20038 min read 183.5K   4.9K   122  
A set of source code and project browsers to compliment Visual Studio.
/**
/*   Copyright (c) 2003by  Marco Welti
/*
/*   This document is  bound by the  QT Public License
/*   (http://www.trolltech.com/licenses/qpl.html).
/*   See License.txt for more information.
/*
/*
/*
/*   ALL RIGHTS RESERVED.  
/* 
/*   THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
/*   OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
/*   WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
/*   ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
/*   DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
/*   DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
/*   GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
/*   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
/*   WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
/*   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
/*   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
/* 
/***********************************************************************/

// OutlineBrowserRenderer.cpp : implementation file
//

#pragma warning( disable:4800 )

#include "stdafx.h"
#include "resource.h"

#include <Controller/Browsers/OutlineBrowser.h>

#include <Renderer/LabelBroker.h>
#include <Renderer/MFC/ESBImageList.h>
#include <Renderer/MFC/Properties/OutlinePropertyPanel.h>
#include <Renderer/MFC/Browsers/OutlineBrowserRenderer.h>
#include <Renderer/MFC/TreeCtrlHelper.h>

#include <Utilities/StringTokenizer.h>

#include <string>

//#include <boost/bind.hpp>

using namespace std;
using namespace boost;


#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif


/////////////////////////////////////////////////////////////////////////////
// OutlineBrowserRenderer dialog

BEGIN_MESSAGE_MAP(OutlineBrowserRenderer, ParentClass )
  //{{AFX_MSG_MAP(OutlineBrowserRenderer)
  ON_COMMAND(ID_OUTLINEBROWSER_HEADER, onGotoHeader)
  ON_COMMAND(ID_OUTLINEBROWSER_SOURCE, onGotoSource)
  ON_COMMAND(ID_OUTLINEBROWSER_INSPECT, onInspectTag)
  ON_COMMAND(ID_OUTLINEBROWSER_HIERARCHY, onShowHierarchy)
  ON_WM_SIZE()
  ON_WM_CREATE()
  //}}AFX_MSG_MAP

  ON_NOTIFY(NM_CLICK, IDC_OUTLINE, mouseClicked)
  ON_NOTIFY(NM_DBLCLK, IDC_OUTLINE, mouseClicked)
  ON_NOTIFY(NM_RCLICK, IDC_OUTLINE, mouseClicked)
  ON_NOTIFY(NM_RDBLCLK, IDC_OUTLINE, mouseClicked)

  ON_BN_CLICKED(IDC_OUTLINE_SORT, onSort)
  ON_BN_CLICKED(IDC_OUTLINE_NO_FIELDS, onNoFields)
  ON_BN_CLICKED(IDC_OUTLINE_NO_STATIC, onNoStatic)
  ON_BN_CLICKED(IDC_OUTLINE_PUBLIC_ONLY, onPublicOnly)
END_MESSAGE_MAP()


OutlineBrowserRenderer::OutlineBrowserRenderer(OutlineBrowser *c, CWnd* pParent /*=NULL*/)
	: ParentClass(), mController(c), mOld(0,0,0,0)
{
  size_t style = WS_TABSTOP | WS_CLIPSIBLINGS |WS_CLIPCHILDREN;
  Create(_T(""), style, CRect(0,0, 300, 450), pParent ? pParent : GetDesktopWindow(), 1001/*IDD*/);
  
  initialize();
  ParentClass::registerMouseListener(this);
}



void OutlineBrowserRenderer::initialize() 
{
  CSize size(22,23);
  CRect rect;

  GetClientRect(rect);
  size_t treeStyle = WS_VISIBLE | TVS_HASBUTTONS | TVS_HASLINES | TVS_LINESATROOT | WS_CHILD | WS_BORDER | WS_TABSTOP;
  size_t border = 2;
  mOutline.CreateEx(WS_EX_CLIENTEDGE, "SysTreeView32", "", treeStyle, CRect(CPoint(0, size.cy), CPoint(rect.Width(), rect.Height())), this, IDC_OUTLINE);

#if _MSC_VER > 1200  // VC7
  mOutline.CreateEx(WS_EX_CLIENTEDGE, treeStyle, CRect(CPoint(0, size.cy), CPoint(rect.Width(), rect.Height())), this, IDC_OUTLINE);
#else
  getOutlinePanel().SetImageList(&ESBImageList::instance(), TVSIL_NORMAL );
#endif

  GetWindowRect(rect);
  ScreenToClient(rect);

  rect.SetRect(CPoint(rect.right-size.cx, 0), CPoint(rect.right, size.cy));

  rect.OffsetRect(-border, 0);
  mSorted.Create(_T(""), getStyle(),rect, this, IDC_OUTLINE_SORT);
  mSorted.SetBitmaps(IDB_SORT_A, RGB(0,0,0), IDB_SORT_F);
  mSorted.SetTooltipText("Sort");
  mSorted.SetWindowPos(&wndTopMost,0,0,0,0,SWP_SHOWWINDOW|
                                    SWP_NOSIZE |SWP_NOMOVE);
  rect.OffsetRect(-size.cx, 0);
  mNoFields.Create(_T(""), getStyle(), rect, this, IDC_OUTLINE_NO_FIELDS);
  mNoFields.SetBitmaps(IDB_NO_FIELDS_A, RGB(0,0,0), IDB_NO_FIELDS_F);
  mNoFields.SetTooltipText("Hide Fields");
  
  rect.OffsetRect(-size.cx, 0);
  mNoStatic.Create(_T(""), getStyle(),rect, this, IDC_OUTLINE_NO_STATIC);
  mNoStatic.SetBitmaps(IDB_NO_STATIC_A, RGB(0,0,0), IDB_NO_STATIC_F);
  mNoStatic.SetTooltipText("Hide Static Members");

  rect.OffsetRect(-size.cx, 0);
  mPublicOnly.Create(_T(""), getStyle(), rect, this, IDC_OUTLINE_PUBLIC_ONLY);
  mPublicOnly.SetBitmaps(IDB_PUBLIC_ONLY_A, RGB(0,0,0), IDB_PUBLIC_ONLY_F, RGB(255,0,0));
  mPublicOnly.SetTooltipText("Hide Non-Public Members");
 
  getOutlinePanel().ModifyStyle(0, TVS_SHOWSELALWAYS | LVS_SINGLESEL, 0);
  
}

size_t OutlineBrowserRenderer::getStyle()
{
  return WS_CHILD | WS_VISIBLE | WS_GROUP | WS_TABSTOP | BS_BITMAP | BS_AUTOCHECKBOX | BS_NOTIFY;
}


/////////////////////////////////////////////////////////////////////////////
// OutlineBrowserRenderer message handlers

void OutlineBrowserRenderer::render()
{
	getOutlinePanel().SetRedraw(false);
  getOutlinePanel().DeleteAllItems();
  
  render(getController().getChildrenOf(NULL), TVI_ROOT);
  
  getOutlinePanel().SetRedraw(true);
}

void OutlineBrowserRenderer::render(const TagList &elements, HTREEITEM parent)
{
  LabelBroker broker;
  //for_each(outline.begin(), outline.end(), bind(&MetaObject::acceptVisitor, _1, &outliner));
  for(TagList::const_iterator element = elements.begin(); element != elements.end(); element++) {

    HTREEITEM x = getOutlinePanel().InsertItem(broker.getLabel(*(*element)).c_str(), parent);
    int icon = ESBImageList::instance().getIcon(*(*element));
	  getOutlinePanel().SetItemImage(x, icon, icon);
    getOutlinePanel().SetItemData(x, (long)element->get());  

    render(getController().getChildrenOf(element->get()), x);
    if(parent == TVI_ROOT) {
      getOutlinePanel().Expand(x, TVE_EXPAND);
    }
	}
}

void OutlineBrowserRenderer::showPopupMenu(MetaObject *tag, short x, short y)
{
  if(tag) { 
    CMenu menu;
	  menu.LoadMenu(IDR_OUTLINE_BROWSER_POPUPMENU);
	  CMenu* pPopup = menu.GetSubMenu(0);

    if(tag->getDeclaration().getFile().empty()) {
      pPopup->EnableMenuItem(ID_OUTLINEBROWSER_HEADER, MF_GRAYED);
    } 
    if(tag->getDefinition().getFile().empty()) {
      pPopup->EnableMenuItem(ID_OUTLINEBROWSER_SOURCE, MF_GRAYED);
    }
    MetaObjectTyper typer;
    tag->acceptVisitor(&typer);
    if(!(typer.getType() & (eClass | eStruct | eUnion))) {
      pPopup->EnableMenuItem(ID_OUTLINEBROWSER_HIERARCHY, MF_GRAYED);
    }
 	  pPopup->TrackPopupMenu(TPM_LEFTALIGN, x, y, this);
  }
}

void OutlineBrowserRenderer::onSort()
{
	getController().sortOrderChanged(mSorted.GetCheck() == 1);
}

void OutlineBrowserRenderer::onPublicOnly()
{
	getController().publicMemberFilterChanged(mPublicOnly.GetCheck() == 1);
}

void OutlineBrowserRenderer::onNoStatic()
{
	getController().staticMemberFilterChanged(mNoStatic.GetCheck() == 1);
}

void OutlineBrowserRenderer::onNoFields()
{
	getController().fieldFilterChanged(mNoFields.GetCheck() == 1);
}

void OutlineBrowserRenderer::onGotoHeader() 
{
	getController().gotoHeader();
}

void OutlineBrowserRenderer::onGotoSource() 
{
	getController().gotoSource();
}

void OutlineBrowserRenderer::onInspectTag() 
{
	getController().inspect();
}

void OutlineBrowserRenderer::onShowHierarchy() 
{
  static const string function = "OutlineBrowserRenderer::onShowHierarchy(): ";
  try {
    getController().gotoHierarchy();

  } catch(std::exception &e) {
    message_box(function + e.what());

  } catch(...) {
    message_box(function + "unknown exception occured");
  }
}

void OutlineBrowserRenderer::mouseClicked(NMHDR* pNMHDR, LRESULT* pResult) 
{
  *pResult = 0;

  MSG msg;
  if(!PeekMessage(&msg, *this, WM_MOUSEFIRST , WM_MOUSELAST , PM_NOREMOVE)){
    msg.wParam = 0;
  }

  size_t clickCount = 0;
  MouseEvent::MouseButton button;
  CWnd *wnd = &getOutlinePanel();
  switch(pNMHDR->code) {
    case NM_CLICK:   button = MouseEvent::eLeftButton;  clickCount = 1; break;
    case NM_DBLCLK:  button = MouseEvent::eLeftButton;  clickCount = 2; break;
    case NM_RCLICK:  button = MouseEvent::eRightButton; clickCount = 1; break;
    case NM_RDBLCLK: button = MouseEvent::eRightButton; clickCount = 2; break;
  }

  mouseClicked(MouseEvent(MouseEvent::eClicked, button | msg.wParam, wnd, GetMessagePos(), clickCount));
}

void OutlineBrowserRenderer::mouseClicked(const MouseEvent &e)
{
  TagRetriever retriever(&getOutlinePanel());

  list<MetaObject*> selection;
  HTREEITEM item = getOutlinePanel().GetFirstSelectedItem();
  while(item != NULL) {
    selection.push_back(retriever.getTag(item));
    item = getOutlinePanel().GetNextSelectedItem(item);
  }

  getController().tagSelectionChanged(selection);
  getController().tagSelectionChanged(retriever.getTagAt(e.getPoint(), true), e);
}

void OutlineBrowserRenderer::setCaption(const std::string &text)
{
  SetWindowText(text.c_str());
}

std::string OutlineBrowserRenderer::getCaption()
{
  CString text;
  GetWindowText(text);
  return text.GetBuffer(0);
}

std::pair<short, short> OutlineBrowserRenderer::getPosition()
{
  CRect rect;
  GetWindowRect(&rect);
  return make_pair(rect.TopLeft().x , rect.TopLeft().y);
}

void OutlineBrowserRenderer::setPosition(short x, short y)
{
  SetWindowPos( NULL, x, y, 0 , 0, SWP_NOZORDER | SWP_NOSIZE);
}

void OutlineBrowserRenderer::show()
{
  ShowWindow(SW_SHOW);
}

void OutlineBrowserRenderer::hide()
{
  ShowWindow(SW_HIDE);
}

void OutlineBrowserRenderer::OnSize(UINT nType, int cx, int cy)
{
  ParentClass::OnSize(nType, cx, cy);
  
  if(!m_hWnd || !mOutline.m_hWnd) return;
    
  // start deferring window pos
  HDWP hdwp=BeginDeferWindowPos(20);

  CRect buttonBar;
  mSorted.GetWindowRect(buttonBar);
  DeferWindowPos(hdwp,mOutline,NULL, 0, 0, cx, cy-buttonBar.Height(), SWP_NOZORDER | SWP_NOMOVE);

  int distance = cx - mOld.Width();
  if(distance) {
    moveChild(mSorted, distance, 0, hdwp);
    moveChild(mNoFields, distance, 0, hdwp);
    moveChild(mNoStatic, distance, 0, hdwp);
    moveChild(mPublicOnly, distance, 0, hdwp); 
  }

  // do the deferred window position change
  EndDeferWindowPos(hdwp);

  //store current rect
  GetWindowRect(&mOld);
}

void OutlineBrowserRenderer::moveChild(const CWnd &wnd, int x, int y, HDWP hdwp)
{
  CRect rect;
  wnd.GetWindowRect(&rect);
  ScreenToClient(rect);
  rect.OffsetRect(x, y);
  DeferWindowPos(hdwp,wnd,NULL, rect.left, rect.top, 0, 0, SWP_NOZORDER | SWP_NOSIZE);
}

int OutlineBrowserRenderer::OnCreate(LPCREATESTRUCT create)
{
  if(mOld == CRect(0,0,0,0)) {
    mOld.SetRect(create->x, create->y, create->cx, create->cy);
  }

  return ParentClass::OnCreate(create);
}


///////////////////////////////////////////////
// 
///////////////////////////////////////////////
OutlineBrowserDialog::OutlineBrowserDialog()
: RaisableDialog(IDD_EMPTY_DIALOG), mOutline(NULL)
{
  setHoverTimeKey(Browsers::Outline::HOVERTIME);
  setRaiseCornerKey(Browsers::Outline::RAISECORNER);
  setPositionKey(Browsers::Outline::POSITION);
  setIcon(IDI_OUTLINE);
}

void OutlineBrowserDialog::show()
{
	bool modal = false;

//  getRenderer().renderOutline(getModel(), getFilter());
//  setCaption(mOutlineName);
  
//  if(modal) {
//    DoModal();
    
//  } else {
    if(!m_hWnd) {
		  Create(IDD_EMPTY_DIALOG,CWnd::GetDesktopWindow());
    }
    ShowWindow(SW_SHOW);
//  }
}

void OutlineBrowserDialog::hide()
{
}

void OutlineBrowserDialog::close()
{
}

void OutlineBrowserDialog::moveToForeground() 
{ 
  super::moveToForeground(); 
}

BOOL OutlineBrowserDialog::OnInitDialog()
{
  RaisableDialog::OnInitDialog();
  
  CWnd *outline = &dynamic_cast<CWnd&>(mOutline);
  CRect rect;
  outline->GetWindowRect(&rect);
  SetWindowPos(NULL, 0, 0, rect.Width()+7, rect.Height()+26, SWP_NOZORDER | SWP_NOMOVE);
  outline->SetParent(this);
  outline->ShowWindow(SW_SHOW);

  AddControl(1001,sizeResize,sizeResize);

  setFocusableWindow(dynamic_cast<CWnd&>(mOutline).GetDlgItem(IDC_OUTLINE));

  return TRUE;
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

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
Switzerland Switzerland
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions