Click here to Skip to main content
15,896,063 members
Articles / Desktop Programming / MFC

A Java Language IDE

Rate me:
Please Sign up or sign in to vote.
4.33/5 (26 votes)
13 May 2004CPOL3 min read 80.7K   3.4K   41  
This is a partially implemented IDE for the Java platform.
// ListCtrlEx.cpp : implementation file
//

#include "stdafx.h"
#include "VisualJava.h"
#include "ListCtrlEx.h"

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

/////////////////////////////////////////////////////////////////////////////
// CListCtrlEx

CListCtrlEx::CListCtrlEx()
{
}

CListCtrlEx::~CListCtrlEx()
{
}


BEGIN_MESSAGE_MAP(CListCtrlEx, CListCtrl)
	//{{AFX_MSG_MAP(CListCtrlEx)
	ON_WM_DRAWITEM()
	ON_WM_CREATE()
	ON_WM_SIZE()
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CListCtrlEx message handlers



void CListCtrlEx::OnDrawItem(int nIDCtl, LPDRAWITEMSTRUCT lpDrawItemStruct) 
{
	MessageBox("debug");
   //ASSERT(lpDrawItemStruct->CtlType == ODT_LISTBOX);
   LPCTSTR lpszText = (LPCTSTR) lpDrawItemStruct->itemData;
   ASSERT(lpszText != NULL);
   CDC dc;
   
	 CRect rc;
	 GetClientRect(&rc);
	 int cx = rc.Width();
	 int cy = 20;
    
	 CRect rt(lpDrawItemStruct->rcItem);
	 rc.right  = rc.left+cx;
	 rc.bottom = rc.top+cy;
	 lpDrawItemStruct->rcItem = *rt;
   
	

	dc.Attach(lpDrawItemStruct->hDC);

   // Save these value to restore them when done drawing.
   COLORREF crOldTextColor = dc.GetTextColor();
   COLORREF crOldBkColor = dc.GetBkColor();

   // If this item is selected, set the background color 
   // and the text color to appropriate values. Also, erase
   // rect by filling it with the background color.
   if ((lpDrawItemStruct->itemAction | ODA_SELECT) &&
      (lpDrawItemStruct->itemState & ODS_SELECTED))
   {
      dc.SetTextColor(::GetSysColor(COLOR_HIGHLIGHTTEXT));
      dc.SetBkColor(::GetSysColor(COLOR_HIGHLIGHT));
      dc.FillSolidRect(&lpDrawItemStruct->rcItem, 
         ::GetSysColor(COLOR_HIGHLIGHT));
   }
   else
      dc.FillSolidRect(&lpDrawItemStruct->rcItem, crOldBkColor);

   // If this item has the focus, draw a red frame around the
   // item's rect.
   if ((lpDrawItemStruct->itemAction | ODA_FOCUS) &&
      (lpDrawItemStruct->itemState & ODS_FOCUS))
   {
      CBrush br(RGB(255, 0, 0));
      dc.FrameRect(&lpDrawItemStruct->rcItem, &br);
   }

   // Draw the text.
   dc.DrawText(
      lpszText,
      strlen(lpszText),
      &lpDrawItemStruct->rcItem,
      DT_CENTER|DT_SINGLELINE|DT_VCENTER);

   // Reset the background color and the text color back to their
   // original values.
   dc.SetTextColor(crOldTextColor);
   dc.SetBkColor(crOldBkColor);

   dc.Detach();	
	CListCtrl::OnDrawItem(nIDCtl, lpDrawItemStruct);
}


int CListCtrlEx::InsertItem(const LVITEM* pItem)
{
  return CListCtrl::InsertItem(pItem);
}

int CListCtrlEx::InsertItem(int nItem,LPCTSTR lpszItem)
{
  return CListCtrl::InsertItem(nItem,lpszItem);
}

int CListCtrlEx::InsertItem(int nItem,LPCTSTR lpszItem,int nImage)
{
  return CListCtrl::InsertItem(nItem,lpszItem,nImage);
}

int CListCtrlEx::OnCreate(LPCREATESTRUCT lpCreateStruct) 
{
	if (CListCtrl::OnCreate(lpCreateStruct) == -1)
		return -1;
	/*CRect rc;
	GetClientRect(&rc);
	int cx = rc.Width();
	int cy = 20;
	ApproximateViewRect(CSize(cx,cy));*/
	return 0;
}

void CListCtrlEx::OnSize(UINT nType, int cx, int cy) 
{
  CListCtrl::OnSize(nType, cx, cy);
  //ApproximateViewRect(CSize(cx,20));
}

void CListCtrlEx::PreSubclassWindow() 
{
	CRect rc;
	/*GetClientRect(&rc);
	int cx = rc.Width();
	int cy = 20;
	ApproximateViewRect(CSize(cx,cy));	*/
	CListCtrl::PreSubclassWindow();
}

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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United States United States
biography? I am not that old yet.

Comments and Discussions