0

I'm working on a rich text editor and I would like to study some design patterns for working with text. I know there are lots of editors out there ago I assume some good patterns exist. However, I'm having trouble finding good resources.

Are there any good books on this topic?
What about open source projects with good code that is easy to read?

Lawrence Barsanti
  • 31,929
  • 10
  • 46
  • 68

2 Answers2

1

Well, you could have a look at the must-read design patterns book, "Design patterns : elements of reusable object-oriented software" by GoF.

They have an example there based on a text editor in the beginning, before presenting every pattern in detail.

Better patterns may exists for today, but that is a very good starting point on top of which you might optimize or at least gain an idea on where to head to.

Vladimir
  • 3,599
  • 18
  • 18
0

If you are a Python programmer you can check the following design patterns resources, they are easy to follow and applied every where.
www.youtube.com/watch?v=0vJJlVBVTFg
http://www.aleax.it/gdd_pydp.pdf
python design patterns.

Understanding will definitely help you out.

Community
  • 1
  • 1
Kracekumar
  • 19,457
  • 10
  • 47
  • 56