Welcome to the CSIG, a Special Interest Group of the ACGNJ. This is an exciting time for the C Language programming since Microsoft now has 4 different language compilers: C++, C++ Express, C-Sharp, and C-Sharp Express. These are all capable of creating Windows (tm) programs. (Some are FREE!)
Here's a brief synopsis of the coming meeting:
Visual Studio C++ includes many Graphics functions.
The object of this program is to create a simple clock that can be placed
on your desktop. It has the visual appearance of the Clock Gadget included
with Windows Vista and Windows 7, but it is not a "Gadget".
It's a simple program designed to be useful and to show how simple
programs can be developed.
The program uses some of the most sophisticated Dot Net Library functions
including the following:
ScaleTransform(), TranslateTransform(), RotateTransform(),
DrawPolygon(), FillPolygon(), FillEllipse(),
SmoothingMode and PixelOffsetMode
These functions make the mathematics and geometry much simplier. For a
comparison see the clock program from March 2001.
http://acgnj.barnold.us/Csig0103.htm
In this modern age with company computers on secure networks as well as home computers running Vista or Windows 7 there are special issues. For example, how do you save and restore the screen position of the clock so that it always starts at the same place on the screen? This is a good question if you want to put it in your startup folder. In the old days you could put an ".ini" file in the Windows folder, but this is now write protected. Another idea is to place the data in the Registry, but this is also write protected in most cases. The clock program provides a modern solution to this dilemma. Code has been added to save the location upon closing and to restore it when the program is opened again.
There are a number of ways to refer to Microsoft's latest compilers and code. Here's what Wikipedia says: The Common Language Infrastructure (CLI) is an open specification developed by Microsoft that describes the executable code and runtime environment that form the core of the Microsoft .NET Framework. The specification defines an environment that allows multiple high-level languages to be used on different computer platforms without being rewritten for specific architectures.
Microsoft .Net Framework 3.5 |
C++ 9.0 |
.Net 3.5 |
CLI |
Common Language Infrastructure |
Managed |
// // PAINT SUBROUTINE ..... ROTATE THE IMAGE AS REQUIRED. // void hand(double size, double angle, System::Windows::Forms::PaintEventArgs^ e) { // angle is in degrees from the 3 o'clock position moving clockwise. // P1 +--------------------------+ P2 // P0 + | P0 is at the center of the clock // P4 +--------------------------+ P3 array^Points = gcnew array (5); Points[0].X = 0.0F; Points[0].Y = 0.0F; Points[1].X = 0.0F; Points[1].Y = (float)(HANDWIDTH / 2.0F); Points[2].X = (float)(size); Points[2].Y = (float)(HANDWIDTH / 2.0F); Points[3].X = (float)(size); Points[3].Y = (float)(-HANDWIDTH / 2.0F); Points[4].X = 0.0F; Points[4].Y = (float)(-HANDWIDTH / 2.0F); Graphics ^g = e->Graphics; g->TranslateTransform(ORIGIN, ORIGIN); g->RotateTransform( (float)angle); g->SmoothingMode = Drawing::Drawing2D::SmoothingMode::AntiAlias; g->PixelOffsetMode = Drawing::Drawing2D::PixelOffsetMode::HighQuality; g->DrawPolygon(System::Drawing::Pens::Gray, Points); // Shadow. g->FillPolygon(System::Drawing::Brushes::White, Points); // Now draw dot at the center of the clock. g->DrawEllipse(System::Drawing::Pens::Gray, -6.0F, -6.0F, 12.0F, 12.0F); // Shadow. g->FillEllipse(System::Drawing::Brushes::White, -6.0F, -6.0F, 12.0F, 12.0F); g->ResetTransform(); } // // TIMER TICK ..... ENTER HERE EVERY SECOND. // private: System::Void timer1_Tick(System::Object^ sender, System::EventArgs^ e) { sender; e; this->Refresh(); // paint the whole clock when the tick occurs. } // // NON-VOLITILE STORAGE LOCATIONS. // #define DATASUBDIRECTORY "Clock2009" #define DATALOCATIONFILE "Location.txt" // // FORM CLOSING ..... SAVE THE CURRENT LOCATION OF THE WINDOW. // Data is saved and read from %appdata% folder. // private: System::Void Form1_FormClosing(System::Object^ sender, System::Windows::Forms::FormClosingEventArgs^ e) { sender; e; Point m_Loc = this->Location; if (WindowState == FormWindowState::Minimized) return; // m_Loc= -32000,-32000 !!! String ^p = Environment::GetFolderPath(System::Environment::SpecialFolder::ApplicationData); IO::DirectoryInfo^ di = gcnew IO::DirectoryInfo(p); if (di->Exists) { IO::DirectoryInfo ^dis = nullptr; IO::StreamWriter ^sw = nullptr; try { dis = di->CreateSubdirectory(DATASUBDIRECTORY); if (dis->Exists) { String ^mFile = gcnew String(dis->FullName) + "\\" + DATALOCATIONFILE; sw = gcnew IO::StreamWriter(mFile); sw->WriteLine(m_Loc.ToString()); // "{X=nnn,Y=nnn}" sw->Close(); } } catch (...) { if (sw != nullptr) sw->Close(); } } }