[ScintillaNET] Re: Newbie - please help me get started

  • From: Garrett Serack <gserack@xxxxxxxxx>
  • To: scintillanet@xxxxxxxxxxxxx
  • Date: Fri, 14 Oct 2005 08:39:42 -0600

Howdy,

Yes, I've been working on a new version, and there is in the version you
have a 'class' ability with styles but it's not well documented. I'm sorry
that it's fallen behind... things have been interesting.

I've been hampered in the last six months, due to real-world problems
creeping up, not the least of which has been flooding in my house, causing
me to have to spend time/money/effort fixing up the old homestead.

Add to that, I'm racing to put my house back together in a sellable
condition, because I've been offered a job in Redmond, so I'm having to move
from Canada to the US. Trust me when I say, the stress this causes on many
sides is pushing things to the limit.

I don't even have my servers up right now, the room I had them in inside my
house had to be emptied, gutted and renovated. 90% of my stuff is in boxes,
and I'm trying to tie up my loose ends before I have to make the trip.

The upside is that probably 2 or 3 months from now, I'll be in a new
Country/City with no friends, no house maintenance, and only my barest
minimum of crap to deal with. I just hope it doesn't take two months for my
stuff to catch up with me. I'll probably have to pack my PCs and Servers to
come with me instead of the movers. Once I get settled, I'll be back working
on this stuff.

Garrett

On 10/14/05, Aditya Gaddam <adityagaddam@xxxxxxxxx> wrote:
>
> Isn't the author working on a new version? Personally, I hate (yes, a
> strong word, but its true) how the xml file is setup now. You have to
> manually set the font and size for each and every definition (atleast
> in PHP). There is no fallback of sorts to a higher "class", atleast
> not in any obvious way.
>
> On 10/14/05, mike.griffin@xxxxxxxxxxxxxxxxxxxxxxxx
> <mike.griffin@xxxxxxxxxxxxxxxxxxxxxxxx> wrote:
> > Our application uses Scintilla.NET, see
> http://www.mygenerationsoftware.com
> >
> > Here is our ScintillaNET.XML file (it's pretty exhaustive)
> > http://www.mygenerationsoftware.com/ScintillaNET.xml
> >
> > Here are the methods from our menu that control some things, you might
> > find these of use:
> >
> > private void menuItemEndOfLine_Click(object sender, System.EventArgs e)
> > {
> > // Toggle the state
> > bool on = !this.scintillaTemplateCode.IsViewEOL;
> > this.scintillaTemplateCode.IsViewEOL = on;
> > this.menuItemEndOfLine.Checked = on;
> > }
> >
> > private void menuItemWhitespace_Click(object sender, System.EventArgs e)
> > {
> > // We reverse the state
> > bool on = this.scintillaTemplateCode.ViewWS == 1 ? false : true;
> > this.scintillaTemplateCode.ViewWS = on ? 1 : 0;
> > this.menuItemWhitespace.Checked = on;
> > }
> >
> > private void menuItemIndentation_Click(object sender, System.EventArgse)
> > {
> > // Toggle the state
> > bool on = !this.scintillaTemplateCode.IsIndentationGuides;
> > this.scintillaTemplateCode.IsIndentationGuides = on;
> > this.menuItemIndentation.Checked = on;
> > }
> >
> > private void menuItemLineNumbers_Click(object sender, System.EventArgse)
> > {
> > bool lineNumbersEnabled = !this.menuItemLineNumbers.Checked;
> >
> > if (lineNumbersEnabled)
> > {
> > this.scintillaTemplateCode.SetMarginWidthN(0, 40);
> > }
> > else
> > {
> > this.scintillaTemplateCode.SetMarginWidthN(0, 0);
> > }
> >
> > this.menuItemLineNumbers.Checked = lineNumbersEnabled;
> >
> > }
> >
> > private void menuItemZoomIn_Click(object sender, System.EventArgs e)
> > {
> > this.scintillaTemplateCode.ZoomIn();
> > }
> >
> > private void menuItemZoomOut_Click(object sender, System.EventArgs e)
> > {
> > if(this.scintillaTemplateCode.ZoomLevel > 0)
> > {
> > this.scintillaTemplateCode.ZoomOut();
> > }
> > }
> >
> >
> --------------------------------------------------------------------------
> > ScintillaNET Mailing List: ScintillaNET@xxxxxxxxxxxxx
> >
> > To unsubscribe: Send an email to scintillanet-request@xxxxxxxxxxxxx
> > and put "unsubscribe" (without the quotes) in the Subject line.
> >
> > Web Page: http://tinyurl.com/yvoh2
> >
>
>
> --
> http://www.pixelfaction.com
> AIM:ApeWithABrain
> --------------------------------------------------------------------------
> ScintillaNET Mailing List: ScintillaNET@xxxxxxxxxxxxx
>
> To unsubscribe: Send an email to scintillanet-request@xxxxxxxxxxxxx
> and put "unsubscribe" (without the quotes) in the Subject line.
>
> Web Page: http://tinyurl.com/yvoh2
>



--
==============================
Garrett Serack
gserack@xxxxxxxxxxxxxxxxxxxx

Other related posts: