<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://bfwiki.tellefsen.net//index.php?action=history&amp;feed=atom&amp;title=Development_-_Naming</id>
	<title>Development - Naming - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://bfwiki.tellefsen.net//index.php?action=history&amp;feed=atom&amp;title=Development_-_Naming"/>
	<link rel="alternate" type="text/html" href="https://bfwiki.tellefsen.net//index.php?title=Development_-_Naming&amp;action=history"/>
	<updated>2026-04-13T14:01:05Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.42.1</generator>
	<entry>
		<id>https://bfwiki.tellefsen.net//index.php?title=Development_-_Naming&amp;diff=1811&amp;oldid=prev</id>
		<title>Bill Valaski: moved Man 2 ch12s02 to Development - Naming:&amp;#32;Title updates (BV)</title>
		<link rel="alternate" type="text/html" href="https://bfwiki.tellefsen.net//index.php?title=Development_-_Naming&amp;diff=1811&amp;oldid=prev"/>
		<updated>2010-07-09T10:13:57Z</updated>

		<summary type="html">&lt;p&gt;moved &lt;a href=&quot;/index.php/Man_2_ch12s02&quot; class=&quot;mw-redirect&quot; title=&quot;Man 2 ch12s02&quot;&gt;Man 2 ch12s02&lt;/a&gt; to &lt;a href=&quot;/index.php/Development_-_Naming&quot; title=&quot;Development - Naming&quot;&gt;Development - Naming&lt;/a&gt;: Title updates (BV)&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 10:13, 9 July 2010&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Bill Valaski</name></author>
	</entry>
	<entry>
		<id>https://bfwiki.tellefsen.net//index.php?title=Development_-_Naming&amp;diff=1001&amp;oldid=prev</id>
		<title>Fal7i: Created page with &#039;__NOTOC__ __NOEDITSECTION__ {{Man2top |lang=en |rev=2.0.0 |st=d |Title=2.&amp;nbsp;Naming |prev=Man 2 ch12 |Subtitle=Chapter&amp;nbsp;XII.&amp;nbsp;Development guidelines |next=Man 2 ch12s03…&#039;</title>
		<link rel="alternate" type="text/html" href="https://bfwiki.tellefsen.net//index.php?title=Development_-_Naming&amp;diff=1001&amp;oldid=prev"/>
		<updated>2009-12-30T09:02:41Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;#039;__NOTOC__ __NOEDITSECTION__ {{Man2top |lang=en |rev=2.0.0 |st=d |Title=2. Naming |prev=Man 2 ch12 |Subtitle=Chapter XII. Development guidelines |next=Man 2 ch12s03…&amp;#039;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;__NOTOC__&lt;br /&gt;
__NOEDITSECTION__&lt;br /&gt;
{{Man2top&lt;br /&gt;
|lang=en&lt;br /&gt;
|rev=2.0.0&lt;br /&gt;
|st=d&lt;br /&gt;
|Title=2.&amp;amp;nbsp;Naming&lt;br /&gt;
|prev=Man 2 ch12&lt;br /&gt;
|Subtitle=Chapter&amp;amp;nbsp;XII.&amp;amp;nbsp;Development guidelines&lt;br /&gt;
|next=Man 2 ch12s03&lt;br /&gt;
}}&lt;br /&gt;
== 2. Naming ==&lt;br /&gt;
For non-local functions, the name should preferably include a prefix that shows the part of bluefish it is used for. There are, furthermore, many often used abbreviations in the bluefish code, such as:&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Abbreviations used in the Bluefish code&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
doc &lt;br /&gt;
&lt;br /&gt;
A function for handling a specific document&lt;br /&gt;
&lt;br /&gt;
bfwin &lt;br /&gt;
&lt;br /&gt;
A function for handling a specific Bluefish window&lt;br /&gt;
&lt;br /&gt;
cb &lt;br /&gt;
&lt;br /&gt;
Callback, a function called after a button click or some other event&lt;br /&gt;
&lt;br /&gt;
lcb &lt;br /&gt;
&lt;br /&gt;
Local callback, a function called after an event, only used in this .c file&lt;br /&gt;
&lt;br /&gt;
Here are such function names that show where they are from, what they handle, and/or what they do&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Examples of function names in Bluefish&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
bmark_set_for_doc &lt;br /&gt;
&lt;br /&gt;
Bookmark code, sets bookmarks for a document&lt;br /&gt;
&lt;br /&gt;
spell_check_cb &lt;br /&gt;
&lt;br /&gt;
Spell check code, this is a callback function (for a button)&lt;br /&gt;
&lt;br /&gt;
project_open_from_file &lt;br /&gt;
&lt;br /&gt;
Project code, opens a new project from a given file name&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Man2bottom&lt;br /&gt;
|prev=Man 2 ch12&lt;br /&gt;
|up=Man 2 ch12&lt;br /&gt;
|next=Man 2 ch12s03&lt;br /&gt;
|prevname= Chapter&amp;amp;nbsp;XII.&amp;amp;nbsp;Development guidelines&lt;br /&gt;
|nextname=3.&amp;amp;nbsp;Declaring procedures&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Fal7i</name></author>
	</entry>
</feed>